eolas/neuron/7c141533-1806-4f5c-a70e-7527be05b1c5/Nodemon.md

16 lines
453 B
Markdown
Raw Normal View History

2024-12-09 18:34:15 +00:00
---
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`.