Jun 13, 2011
Develop node.js without restarting
Run your server with nodemon instead of node. It will scan for filesystem changes and restart node automatically when a change is made.
$ sudo npm install nodemon $ nodemon app.js
Jun 13, 2011
Run your server with nodemon instead of node. It will scan for filesystem changes and restart node automatically when a change is made.
$ sudo npm install nodemon $ nodemon app.js