eolas/neuron/9c5035d3-e1c9-40cd-a4b3-9d550f2b7fb6/Nodemon.md
2025-01-17 18:06:56 +00:00

453 B

tags
node-js

Nodemon

We don't want to have to restart the local server every time we make a change to our files. We can use nodemon instead of node when running our index.js file so that file-changes are immediately registered without the need for a restart.

This is a wrapper around the node command so it doesn't require any configuration. Once installed, update your start script from node index.js to nodemon index.js.