Hacker News new | ask | show | jobs
by nahiluhmot 4044 days ago
I can't speak to this framework, but you do not need to use server-side rendering for React applications. Instead, you can essentially serve a blank page on every request, then have the React application bootstrap itself when the page loads. Alternatively, one could precompile the HTML, and serve it as static content with nginx, apache, etc.
2 comments

It's funny Meteor actually has this problem upside down and are trying to add a way to have server side rendering.
Correct, not rendering on the server removes the bottleneck.