This project explores how to do an Isomorphic Server Side Rendering App with React + Redux combined with events on client side with socket.io
To try out locally the project:
Run api server (Need a mongodb started)
$ git clone https://github.com/lgimeneza/auction-app.git
$ cd auction-app/server/api
$ npm install
$ npm start
Run frontend app
$ cd ../../client
$ npm install
$ cd ../frontend
$ npm install
$ npm start
Go to http://localhost:9000 to get the code up and running
Here are some resources that helped me to set up the project: