Answers for "nodemon /bin/sh: nodemon: command not found"

7

nodemon command not found linux

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

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 May-16-2020

Browse Popular Code Answers by Language