1# Install nodemon
2npm install nodemon
3
4# Install nodemon globally on your machine
5npm install -g nodemon
6
7# Install nodemon on your project as dev-dependency
8npm install nodemon --save-dev
1 "scripts": {
2 "start": "node ./bin/www",
3 "devstart": "nodemon ./bin/www",
4 "serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
5 },