nodemon : The term 'nodemon' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ nodemon ap.js
+ ~~~~~~~
+ CategoryInfo : ObjectNotFound: (nodemon:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Asked
Active
Viewed 691 times
-1

大陸北方網友
- 3,696
- 3
- 12
- 37

Amit VErma
- 3
- 1
-
Can we have details on how you get this error ? – MarleneHE Sep 24 '20 at 07:51
-
2Does this answer your question? [nodemon command is not recognized in terminal for node js server](https://stackoverflow.com/questions/40359590/nodemon-command-is-not-recognized-in-terminal-for-node-js-server) – Prathamesh More Sep 24 '20 at 08:19
1 Answers
0
Install nodemon as a global package
npm install -g nodemon

Rahul Gupta
- 166
- 3
- 7
-
try this open terminal in your project and type this **npm install --save-dev nodemon** and if this doesn't work then try to reinstall node js in your system – Rahul Gupta Sep 30 '20 at 10:24