What is Cloudflare using to do SSR? Bun? npm?
Like, after building my website, I use npm run start to test it locally, So, what does cloudflare use on the web? bun, npm? I am not asking about what is being used for building, what is being used to run it in production?
4 Replies
the nodejs-compact is what is running in it right?
So, it doesn't matter what I use for building, the running performance would depend on workerd only right?
correct, build time and runtime are different - runtime is always gonna be workerd/workers runtime
performance is a very open thing, workers run very fast but you can of course write slow code and bundle more things, etc.
thanks a lot