`# Install nodemon
npm install nodemon
Install nodemon globally on your machine
npm install -g nodemon
Install nodemon on your project as dev-dependency
npm install nodemon --save-dev`
then in file package.json
add it
"scripts": {
"start":"nodemon index.js"
}
then in index.js
add this
Top comments (0)