Live data from Hacker News

Ask HN: What is the best tech stack or platform for an ecommerce site?

news.ycombinator.com

11–13 of 13 posts

Re: Ask HN: What is the best tech stack or platform for an ecommerce site?

#12
About WooCommerce: Go for it, but be ready for some customizations to meet your own needs.

Use the plugins you need, else if you have the knowledge implement the whole mechanism yourself either in a series of small custom plugins or place the whole custom code inside your theme's `functions.php`.

My suggestion would be the following:

    * go with a VPS
    * choose NGINX for web server and reverse proxy
    * setup microcaching
    * use memcached or Redis if microcaching does not cover your needs
    * use the latest PHP
    * avoid using a plugin for image optimization; let NGINX do that for you
    * if there's a need for a REST communication, use WooCommerce's REST API; it works wonders!
That's all I can remember for now.

So, TLDR; yes, you can go with WooCommerce and communicate with your own CRM's APIs without a sweat.

How do I know?

Well, I have done that for a customer. It's a custom solution that updates their stock on a daily basis multiple times and every 15 minutes it automatically synchronizes the necessary changes; else, there's the "run now" option to immediate execute the synchronization upon demand.

Re: Ask HN: What is the best tech stack or platform for an ecommerce site?

#13
post #9

I have a lot of experience with WP and WooCommerce so I may be biased but 500 sales a day with 10K visitors a day should be fairly achievable in WordPress/WooCommerce. It can be scaled even more if needed. If you want to worry about business and not tech, forget about shiny things like JAMStack, HeadLess CMS etc. Play with them for hobby on the side but for real business, go with something tested like WooCommerce if…

Well said; +1!
Post reply on HN