diff --git a/README.md b/README.md index 1081b748..92ee33dd 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/package.json b/package.json index e3aa577d..aa67c989 100644 --- a/package.json +++ b/package.json @@ -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" } }