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.
- React.js
- Webpack
- Express
- react-router
- Babel
- EJS
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.