Answers for "my nodemon app.js not found"

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

Code answers related to "my nodemon app.js not found"

Browse Popular Code Answers by Language