Better Programming

Advice for programmers.

Follow publication

Member-only story

How To Use Nodemon To Restart Your Node.js Applications

Geshan Manandhar
Better Programming
Published in
5 min readMar 17, 2021
Hand holding Pokeball
Photo by Kamil S on Unsplash.

If you are developing any Node.js application, nodemon is one of the necessary weapons in your arsenal. Learn how to install and effectively use nodemon to automatically restart your Node.js application on every relevant file change.

Do you want to restart your Node.js web server and save loads of development time? In this article, we are going to see how you can utilize nodemon with any Node.js application easily.

A Quick Intro

Having nodemon to watch your file changes is like having an eagle watching over its prey. On every file save, your Node.js server is automatically restarted for you.

Even nodemon’s slogan says, “Reload, automatically.” It might come as a surprise to you that nodemon can be used with other languages like Python, Ruby, or even Make as well. Nodemon is used as a dependency by more than 1.5 million projects, so it is surely battle-tested. If you are not using nodemon for development, you are missing out.

Let’s go ahead and install nodemon.

How To Install nodemon

Before we install nodemon, we will use a sample app to see nodemon in action. We will use the Node.js MySQL open source application that I used for my Node.js MySQL tutorial. This is a simple quotes REST API built with Node.js and Express.js communication with a MySQL database. Next, we will install nodemon in this sample application.

Like most npm modules, Nodemon can be installed in two ways.

Install nodemon as a global dependency

To install nodemon as a global NPM dependency, we can run the following command:

This will install nodemon as a global dependency. It will also make the nodemon command available on any path you run it on. The advantage is that you don’t need to…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Geshan Manandhar
Geshan Manandhar

Written by Geshan Manandhar

Senior Software Engineer, Agile follower. Technologist, Google Developer Expert. Blogging at geshan.com.np

No responses yet

Write a response