Nodemon: let node restart automatically.

nodemon:Server auto restart tool

When we modify the code, node has to restart manually, but it can follow nodemon.

npm install -g nodemon

After installing nodemon, you can use nodemon instead of node to start the application:

nodemon server.js

Looking at help, there are many options to be seen at a glance:

nodemon -h

 

Leave a Reply

Your email address will not be published. Required fields are marked *