xxxxxxxxxx
#nodemon on project
yarn add nodemon -D
#to run nodemon from any folder
yarn add -g nodemon
#run with nodemon
nodemon index.js if nodemon install globally
if you want to run from command used script inside package.json
"script":{
"server":"nodemon index.js"
},
run using yarn run server
xxxxxxxxxx
# 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
xxxxxxxxxx
// globally install nodemon
npm install -g nodemon
// modify package > script for easily use
"start": "node index.js", // replace index.js by your file-name
"start-dev": "nodemon index.js",
xxxxxxxxxx
# Install nodemon
npm install nodemon
# Install nodemon globally on your machine
npm install -g nodemon
#
nodemon index.js
# Install nodemon on your project as dev-dependency
npm install nodemon --save-dev
xxxxxxxxxx
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
},
xxxxxxxxxx
// Note: In order to prevent nodemon from automatically restarting your
// application before you've finished updating your code,
// you will need to turn off Autosave on VS Code and remember to save manually.
// Install it globally with the following command:
npm install -g nodemon