Start node.js
- Install nvm (https://github.com/creationix/nvm)
- install node
Start node.js
| $ mkdir project | |
| $ cd project | |
| $ npm init |
| # find laste stable express version | |
| $ npm info express version | |
| $ npm install --save express |
| { | |
| "name": "hello-world", | |
| "description": "hello world test app", | |
| "version": "0.0.1", | |
| "dependencies": { | |
| "express": "3.x" | |
| } | |
| } |