Making CRA apps work with SSR

This is a multi-post series about how to server-side-render react apps that were built using create-react-app. You can read more about how and why I came up with this below.

Part 1: Off to a simple start I start off simple. A barebones app can’t even deal with css, but helps explain the process involved.

Part 1.5: Amending mistakes Once the base system is up and running, it was time to patch it up. Make it work with css and other stuff.

Part 2: Integrating Redux Redux works great with react. So I had to fit it in. But instead of simply embedding the data. I moved things up a notch.

Part 3: Routing with react-router We’ll explore static and dynamic routing with react-router, along with handling route params and redux integration.

You can read more on this on hackernoon. The code used in the series is here on github.