From d9f21da45f184f90cde8ea781399a41f5619c7c7 Mon Sep 17 00:00:00 2001 From: Joseph Olayanju <49444453+Olayanju-1234@users.noreply.github.com> Date: Wed, 21 Sep 2022 12:33:10 +0100 Subject: [PATCH] Add nodemon content (#1786) * Update 100-nodemon.md * Update content/roadmaps/107-nodejs/content/108-nodejs-keep-app-running/100-nodemon.md Co-authored-by: Kamran Ahmed --- .../content/108-nodejs-keep-app-running/100-nodemon.md | 9 ++++++++- 1 file changed, 8 insertions(+), 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 17551021e..97667ac7d 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 +1,8 @@ -# Nodemon \ No newline at end of file +# 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. + +`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. + +Free Content +How To Restart Your Node.js Apps Automatically with nodemon