Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 909 Bytes

File metadata and controls

38 lines (28 loc) · 909 Bytes

React Isomorphic Demo app

This project serves as either a very simple boilerplate to start building an isomorphic application in React.js.

Please see the walkthrough for a more thorough explanation of the code.

Stack

  • React.js
  • Webpack
  • Express
  • react-router
  • Babel
  • EJS

Installation instructions

In the project's directory, run the following commands:

 $ npm install
 $ npm start

In Windows npm can not yet run operation in parallel so we add in npm-run-all
Change the start command in package.json to:

"start": "npm-run-all --parallel watch-js dev-server server",

Now install the packages with the following commands:

$ npm install
$ npm install --save-dev npm-run-all
$ npm start

When the servers are started, visit http://localhost:8080 to see a Hello world page.