From 9262576f50d06763f547269e1e4dffb803c6349c Mon Sep 17 00:00:00 2001 From: Arya Singh <72375247+ARYASINGHBJC@users.noreply.github.com> Date: Fri, 21 Oct 2022 21:10:22 +0530 Subject: [PATCH] Add content to nodemon (#2583) Although `Nodemon` is widely used in local development but `PM2` handles everything and even performs better in production environment. --- .../content/108-nodejs-keep-app-running/100-nodemon.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/108-nodejs-keep-app-running/100-nodemon.md b/content/roadmaps/107-nodejs/content/108-nodejs-keep-app-running/100-nodemon.md index 97667ac7d..e711e7f5f 100644 --- a/content/roadmaps/107-nodejs/content/108-nodejs-keep-app-running/100-nodemon.md +++ b/content/roadmaps/107-nodejs/content/108-nodejs-keep-app-running/100-nodemon.md @@ -1,6 +1,6 @@ # Nodemon -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](https://nodemon.io/) to restart the process automatically. +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](https://nodemon.io/) or [PM2](https://pm2.keymetrics.io/docs/usage/quick-start/) to restart the process automatically. `nodemon` is a command-line interface (CLI) utility developed by [@rem](https://twitter.com/rem) that wraps your Node app, watches the file system, and automatically restarts the process.