Answers for "how can i install globall nodemon"

1

nodemon global instal npm

npm install -g nodemon
Posted by: Guest on June-05-2020
0

nodemon install globally

//Install nodemon on your project as dev-dependency
npm install nodemon --save-dev


//Update the package.json file
  "scripts": {
    "start": "node ./bin/www",
    "devstart": "nodemon ./bin/www",
    "serverstart": "DEBUG=your-folder-name:* npm run devstart"
  },

//On Windows, use this command:

SET DEBUG=express-locallibrary-tutorial:* & npm run devstart

//restart server by typing this on cmd rs (restart)
rs
Posted by: Guest on May-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language