eolas/neuron/14b2609c-4c92-4980-96d4-543ba5a9d0be/Nodemon.md
2025-03-27 17:52:56 +00:00

15 lines
453 B
Markdown

---
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`.