Monday, 27 November, 2017 UTC


Summary

In this lesson, we will look at a node module `nodemon` which stands for `node-monitor`. it enables us to do continuous development by monitoring our files for changes and re-running our file when it detects any changes. this is helpful while we are developing and want to see the changes continuously without waiting. to install nodemon run `npm install --global nodemon` in the cmd or terminal.