Answers for "how do i run nodemon locally?"

1

starting nodemon server

nodemon ./server.js localhost 8080
Posted by: Guest on May-06-2021
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
2

nodemon install locally

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

Browse Popular Code Answers by Language