Node js

How to install nodemon Nodejs on macOS? nodemon keeping show : command not found

Pinterest LinkedIn Tumblr

Set for a global run.

npm install nodemon --save-dev

In the Package.json file, we need to put the start and file name.

"scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "nodemon app.js"
}
npm start

Write A Comment