Answers for "why don't we use nodemon in production"

142

install nodemon

# 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
Posted by: Guest on February-05-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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language