What is fix, if found error message *nodemon' is not recognized as an internal or external command, operable program or batch file. * after hitting command nodemon index in your node project the
Asked
Active
Viewed 5,670 times
3
-
install nodemon globally. npm install -g nodemon – ArUn Sep 28 '19 at 10:48
3 Answers
3
you need to nodemon install globally. using this command
npm install -g nodemon --save-dev

Muhammad Hamed K
- 279
- 1
- 4
- 9
2
Install Nodemon like
npm install nodemon --save-dev
nodemon is require for development purpose only, so use -dev for this.

Kishan Maurya
- 3,356
- 8
- 21
0
At First Need To Install Nodemon Module. So go to the project dir. Then open terminal. And paste the code And Press "Enter"
npm install nodemon --save-dev

MUKUL HOSEN
- 104
- 4