Installing nodemon - barrycumbie/solid-fishstick-snowcats GitHub Wiki
In this guide, we learn to install nodemon.
This guide assumes the user already has node.js installed.
1. Start vs code and open the terminal making sure to select git bash.
2. Install nodemon globally using the following command:
npm install -g nodemon
3. Change to to the directory where your repository is located.
4. Using nodemon, you can start your script using this command:
nodemon app.js
As you can see, the app is now listening on port 5000.