Experiment with Facebook's ReactJS via their introductory tutorial
- ReactJS (A JavaScript library for building user interfaces)
Running site on Express server:
$ npm install express --save
$ npm install body-parser --save
- Create
server.js
file in root directory with contents as per this codebase package.json
file: "scripts": "start" will now neednode server.js
- Run server:
$ node server.js
- View site at: http://localhost:3000