Answers for "nodemon script nodejs"

124

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

nodemon script nodejs

"scripts": {
      "start": "node ./bin/www",
      "devstart": "nodemon ./bin/www",
      "serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
    },
Posted by: Guest on August-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language