- hypernova from AirBnb
- Server-Side Rendering
- Handcrafting an Isomorphic Redux Application
- Universal React
- Isomorphic React app with Rails
- Setting up a simple isomorphic React app
- What is an isomorphic application
- True isomorphic app with baobab
- Rendering React - Server-side
- Foundation of Universal JavaScript
- From AirBnB
- react-dom-stream - A streaming server-side rendering
// on the server you can render the app to a string
res.write(ReactDOMServer.renderToString(<App />));
// then the client can pick it up
ReactDOM.render(<App />, elementTheServerRenderedInto);