Answers for "how to use nodemon in windows"

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
1

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 "Shell/Bash"

Browse Popular Code Answers by Language