Answers for "command to run nodemon on mac"

0

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
Posted by: Guest on December-14-2020
0

nodemon a npm run command

nodemon --exec npm run dev:test
Posted by: Guest on April-17-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language