NodeJS + Nodemon
programming·@wvicente·
0.000 HBDNodeJS + Nodemon
http://i.imgur.com/fnBLg93.png When we are programming in NodeJS, is really annoying to restart the application just to see minor changes in the code, especially when you are making some web app with express. The quickest solution to this is [nodemon][1]. ### Install > npm install -g nodemon ### Usage > nodemon [your node app] ### Example (express) > nodemon bin/www - - - While your application run through [nodemon][1], every time that you change any file, he will watch the files in the directory in which was started, and if any files change, he will automatically restart your node application. For more information visit: https://www.npmjs.com/package/nodemon [1]: https://www.npmjs.com/package/nodemon "Simple monitor script for use during development of a node.js app"