Back to Developer Roadmap

Keep App Running

src/data/roadmaps/nodejs/content/[email protected]

4.0429 B
Original Source

Keep App Running

In Node.js, you need to restart the process to make changes take effect. This adds an extra step to your workflow. You can eliminate this extra step by using nodemon to restart the process automatically.

Since Node.js 18.11.0, you can run Node with the --watch flag to reload your app every time a file is changed. So you don't need to use nodemon anymore.

Visit the following resources to learn more: