-
React for Beginers: Creating an Isomorphic React App
https://medium.com/codingbox/react-for-beginners-creating-isomorphic-react-redux-app-and-deploying-it-on-heroku-6a313f8f3693
An in-depth article describing an isomorphic project configuration and deployment -
React.js: Server side rendering
http://crypt.codemancers.com/posts/2016-09-16-react-server-side-rendering/
An example of setting up server rendering using React-Router and Express -
ReactJS: Server side rendering with router v4 and redux
http://crypt.codemancers.com/posts/2017-06-03-reactjs-server-side-rendering-with-router-v4-and-redux/
A follow-up to the previous post that shows how to implement SSR using React-Router v4 instead of v3, and includes use of Redux as well. -
Build a Universal Javascript App
https://www.packtpub.com/books/content/build-universal-javascript-app-part-1
https://www.packtpub.com/books/content/build-universal-javascript-app-part-2
A tutorial that discusses some benefits of building a universal app, and walks through building an app with Express, React, and React Router. -
React is gaining ground as a universal server side templating system
https://medium.com/@velmu/react-is-gaining-ground-as-a-universal-server-side-templating-system-26fe02eebe12
Some thoughts on using React as a template rendering engine, integrated into various server-side language stacks. -
Server Side React
https://remysharp.com/2016/12/07/server-side-react
A well-written article detailing lessons learned trying to use React to render on the server, including tools used, bumps in the road and links to further resources -
Universal React Rendering: How We Rebuilt SitePoint
https://www.sitepoint.com/universal-react-rendering-sitepoint/
The SitePoint team explains how they added server-rendered React content into their existing Wordpress application -
React on the Server for Beginners: Build a Universal React and Node App
https://scotch.io/tutorials/react-on-the-server-for-beginners-build-a-universal-react-and-node-app
Details building a React app that renders on both the client and the server -
Going Isomorphic with Python and React
https://dev.to/__amol__/going-isomorphic-with-python-and-react
A look at how to use DukPy and React together to write an isomorphic web application with Python without even installing Node.js. -
Server side rendering with React, React Router v4, React Helmet, and CSS Modules
https://blog.digitalkwarts.com/server-side-rendering-with-reactjs-react-router-v4-react-helmet-and-css-modules/
A detailed tutorial demonstrating how to set up a production-ready SSR application -
Code Cracked for Code Splitting + SSR in Reactlandia: React Loadable + Webpack Flush Chunks
https://hackernoon.com/code-cracked-for-code-splitting-ssr-in-reactlandia-react-loadable-webpack-flush-chunks-and-1a6b0112a8b8
Describes some of the problems involved in properly implementing both SSR and code-splitting, and how a combination of libraries seems to help solve those problems. -
Server-Side React Rendering
https://css-tricks.com/server-side-react-rendering/
A good tutorial that walks through the basic setup needed to start rendering React components into HTML in an Express server. -
Server-Render like a Pro /w Redux-First Router in 10 steps
https://medium.com/faceyspacey/server-render-like-a-pro-w-redux-first-router-in-10-steps-b27dd93859de
A walkthrough for using the author's Redux-First Router library for managing SSR, including setting up Webpack configs. -
Introducing Second: a framework for mostly-static React applications
https://wildlyinaccurate.com/introducing-second-a-framework-for-mostly-static-react-applications/
Describes a new library for rendering static sites with React, with the ability to opt-in to "dehydrating" certain components on the client to make them interactive.