Answers for "how to run a nodemon scripts"

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
0

nodemon a npm run command

nodemon --exec npm run dev:test
Posted by: Guest on April-17-2020
0

run file with nodemon

nodemon YourFileName
Posted by: Guest on June-15-2021

Code answers related to "how to run a nodemon scripts"

Browse Popular Code Answers by Language