Answers for "nodemon command not found linux"

5

nodemon command not found linux

sudo npm install nodemon -g
Posted by: Guest on March-10-2021
2

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
Posted by: Guest on March-10-2021
0

nodemon: command not found

npx nodemon server.js
Posted by: Guest on March-10-2021
0

nodemon: command not found

npm run dev
Posted by: Guest on March-10-2021

Code answers related to "nodemon command not found linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language