3

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

Muhammad Hamed K
  • 279
  • 1
  • 4
  • 9

3 Answers3

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