Skip to content

Commit

Permalink
Merge pull request #115 from silentdth/master
Browse files Browse the repository at this point in the history
Add ability to run npm start on Windows platform
  • Loading branch information
mansilladev committed Sep 5, 2013
2 parents da597f8 + e80773f commit eccda4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -69,9 +69,11 @@ redis-server
**Start I/O Docs**:

```
npm start
npm start (*nix, Mac OSX)
npm run-script startwin (Windows)
```


**Point your browser** to: [localhost:3000](http://localhost:3000)


Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -37,6 +37,7 @@
"npm": ">= 1.1.49"
},
"scripts": {
"start": "node_modules/.bin/supervisor -e 'js|json' app"
"start": "node_modules/.bin/supervisor -e 'js|json' app",
"startwin": "supervisor -e 'js' app"
}
}

0 comments on commit eccda4d

Please sign in to comment.