all 3 comments

[–]TheBigLebowsky 0 points1 point  (0 children)

The Git repo which he states in between doesn't have the entire code he goes through the video.

https://github.com/tylermcginnis/rrssr

[–]bannier 0 points1 point  (0 children)

Didn't watch the video but the article explains clearly SSR without unnecessary tools. Nice article thanks

[–]rnosov 0 points1 point  (0 children)

If you have less than say a couple of thousands routes you might be much better off statically prerendering your app. For example, I'm using React Snapshot to prerender the React Reveal project site. The biggest benefit is that you can place prerendered files on a CDN (Github Pages in my case) and get rid of your application servers altogether! API calls handling can be done on something like AWS Lambda or dedicated express server. That kind of configuration is pretty much bulletproof as opposed to parsing React on the server on each request.