Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Carlos Samuel Hernández 1d4638fe46
Node.js 108: Keep App Running (new --watch option) (#2508)
3 years ago
..
100-nodemon.md Add content to nodemon (#2583) 3 years ago
readme.md Node.js 108: Keep App Running (new --watch option) (#2508) 3 years ago

readme.md

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 everytime a file is changed. So you don't need to use nodemon anymore. Node.js 18.11.0 Changelog.