The nodemon Module is a node.Js module that develop node.js based applications by automatically restarting the node application when file changes in the directory are detected. nodemon saving lot of development time.
When you are using node you have to restart on your own to see the changes you made But nodemon watches the particular path for any changes.If you make any changes in your file, nodemon will restart it for you.
nodemon monitors your project directory and automatically restarts your node application when it detects any changes in your node application. so you do not have to stop and restart your applications. any changes in application then nodemon automatically detect your changes to take effect.
if we accessing file with nodemon you no need to stop server and restart it only one line of command will save restart server time.
When you run a server using the command node server.js, after every change in your code you have to again run the node server.js command and reload the page to see the changes. but Nodemon auto-updates the server
How to run nodemon?
Trending Tutorials