Answers for "how to put nodemon in the script"

15

nodemon node

npm install -g nodemon
Posted by: Guest on February-17-2020
0

npm execute script with nodemon

add below in package.json =>
"scripts": {
	"start": "nodemon my_file.js"
}
then run following command =>
npm start
Posted by: Guest on August-12-2021
1

npm install nodemon

npm install --save-dev nodemon
Posted by: Guest on April-09-2021

Browse Popular Code Answers by Language