fix: 'nodemon' is not recognized as an internal or external command, operable program or batch file

6.3k Views Asked by At

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

3

There are 3 best solutions below

0
Muhammad Hamed K On

you need to nodemon install globally. using this command

npm install -g nodemon --save-dev

0
Kishan Maurya On

Install Nodemon like

npm install nodemon --save-dev

nodemon is require for development purpose only, so use -dev for this.

0
MUKUL HOSEN On

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