nodemon is not working code example
Example 1: nodemon command not found
npx nodemon server.js
or add in package.json config:
...
"scripts": {
"dev": "npx nodemon server.js"
},
...
then run:
npm run dev
Example 2: nodemon not installing
sudo npm install -g nodemon
Example 3: nodemon command not found mac
nodemon command not foundWhatever By Mysterious Monkey on May 16 2020
npx nodemon server.js
or add in package.json config:
...
"scripts": {
"dev": "npx nodemon server.js"
},
...
then run:
npm run dev