Skip to content

Commit

Permalink
Using npm start to start web server.
Browse files Browse the repository at this point in the history
  • Loading branch information
ycombinator committed Dec 3, 2013
1 parent 2dcb2b3 commit 69e5e05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ Please follow the instructions below to setup your development environment.
4) Start the Web Application. It runs on port 8020 by default. (The port
can be changed by setting the `PORT` environment variable.)

$ node app.js
$ npm start

5) Open your website at http://localhost:8020
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"jshint": "1.1.0"
},
"scripts": {
"lint": "jshint ."
"lint": "jshint .",
"start": "node app.js"
},
"engines": {
"node": "0.10.x",
Expand Down

0 comments on commit 69e5e05

Please sign in to comment.