A sample seed project to render React on the server side. It will run a small ReactJS app displaying a list of posts. This project is based on Play Framework, ReactJS and NodeJS.
Here are the slides of the related presentation: Isomorphic Apps with React
cd frontend
npm install
gulp
cd backend
activator
~ run 9010
cd ssr
npm install
node index.js
Just access to http://localhost:9010/post
and pass server
query parameter to launch the demo :
http://localhost:9010/post
: no server renderinghttp://localhost:9010/post?server=nashorn
: server rendering using Nashornhttp://localhost:9010/post?server=node
: server rendering using Node