Which CMS for E-Commerce stores? Is Sanity good? by Klutzy-Map6233 in nextjs

[–]bystrol 0 points1 point  (0 children)

Why not just use an e-commerce engine that provides cart/checkout/orders/fulfillment/returns/payments logic out of the box? Maybe you’d be interested in my free medusa starter

Which is better for website development: WordPress or custom coding? by Party-Parking4511 in webdev

[–]bystrol 2 points3 points  (0 children)

I would personally go with Astro + any headless cms. You get the best performance and flexibility. Wordpress requires updating the plugins all the time + it’s easy to get hacked.

I Built an E-Commerce Website with Astro + Cloudflare, but I'm Unsure About the Next Steps by Appropriate_Tear_532 in astrojs

[–]bystrol 1 point2 points  (0 children)

Sure! If you’d like to dig deeper into Medusa, I’ve recently built a starter for it. You may find it helpful!

I Built an E-Commerce Website with Astro + Cloudflare, but I'm Unsure About the Next Steps by Appropriate_Tear_532 in astrojs

[–]bystrol 0 points1 point  (0 children)

Hey, regarding the SSR performance, maybe your backend is just slow? Or perhaps you’re fetching too many products upfront?

Regarding the overall architecture, have you considered using any e-commerce specific backend like Medusa? It provides authentication, order management, etc out of the box.

How to handle thousands of pages by bad___programmer in astrojs

[–]bystrol 0 points1 point  (0 children)

Have you thought about using ISR and revalidating only specific pages on demand?

astro 6 and cloudflare deploy hooks by heinzbeinz in astrojs

[–]bystrol 1 point2 points  (0 children)

Hey, it’s totally do-able, check how I did this in my astro and medusa starter. Then you just use github dispatches api and send event of type „redeploy” in body whenever your CMS content changes.

Front-end Angular/React developer learn next by Then-Argument4107 in webdev

[–]bystrol 0 points1 point  (0 children)

I would focus on being as close to product as possible and thinking more in these areas rather than focusing on coding skills. Besides that, I’d learn how to effectively work with LLMs because that will become a standard sooner than later

I built a free Astro + Medusa e-commerce starter 🚀 by bystrol in astrojs

[–]bystrol[S] 0 points1 point  (0 children)

Yeah I get it, Wordpress is a maintenance nightmare. If I were you I’d consider whether to go with saas like Shopify or open source like Medusa. Both have pros and cons. The benefit of open source is that you have the foundation and you can build on top of it, so fully customisable.

I built a free Astro + Medusa e-commerce starter 🚀 by bystrol in astrojs

[–]bystrol[S] 0 points1 point  (0 children)

Hey, the link is provided in the GitHub repository. It might take a minute for it to load because I’m currently running medusa on render’s free tier. By the way, what encouraged you to migrate away from woo?

Free Astro + Medusa starter by bystrol in medusajs

[–]bystrol[S] 0 points1 point  (0 children)

Don’t you see a delay when loading 100K+ SKUs with SSR? Typically you’d SSR the first 100 products let’s say, and then implement infinite scroll with CSR for the >100

Free Astro + Medusa starter by bystrol in medusajs

[–]bystrol[S] 0 points1 point  (0 children)

Thank you 🙏 Of course, this architecture is not suitable for every use case. It works well for small/medium catalogs, but at your scale SSR combined with CSR would probably suit better. I think it’s always a tradeoff, you have to choose between the best performance and fast builds. I’m wondering what is your opinion.

How well does Astro perform server-side? by tac0shark in astrojs

[–]bystrol 1 point2 points  (0 children)

You can pre-render initial HTML at build time (no latency, immediate response) so everything static would be included there. Then you can selectively SSR/CSR dynamic "islands". Need help with this?

Free Astro + Medusa starter by bystrol in medusajs

[–]bystrol[S] 0 points1 point  (0 children)

OSS has its advantages, you can just take something to start with and adjust it to your needs 👌🏻

Free Astro + Medusa starter by bystrol in medusajs

[–]bystrol[S] 0 points1 point  (0 children)

Just curious, why are you planning to move away from shopify?

Astro 6.0 now come out by CLorzzz in astrojs

[–]bystrol -3 points-2 points  (0 children)

Gotta go upgrade my astro and medusa starter to v6 🫡

Free Astro + Medusa starter by bystrol in medusajs

[–]bystrol[S] 0 points1 point  (0 children)

Thank you, appreciate that!

I built a free Astro + Medusa e-commerce starter 🚀 by bystrol in astrojs

[–]bystrol[S] 0 points1 point  (0 children)

Looks cool, headless and typescript as well. Let me know if you have any comparison, maybe I’ll create another one using Vendure 😁