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