I Made a React Redux Node Boilerplate

Redux is currently the hottest framework in React world.

The official Redux examples are very lackluster, so I wrote a simple blog app that contains the minimum you’d need for universal/isomorphic rendering, routing (via React-Router), async (via Redux-Thunk, unfortunately you can’t do async out of the box in Redux), meta tags (via React-Helmet), and deploying to production. There’s still work to be done (eg. cleaning up code), but it works and the main boilerplate is implemented.

GitHub link: https://github.com/JeremyBernier/react-redux-node-boilerplate

Hopefully this will minimize the amount of time you have to waste writing boring boilerplate code just to get up and running.