‘nodemon’ is not recognized as an internal or external command Exception

‘nodemon’ is not recognized as an internal or external command Exception

Exception:

‘nodemon’ is not recognized as an internal or external command, operable program or batch file.

Resolution:

To use nodemon, we must install it globally. So, run the following command

npm install -g nodemon

After the installation, try running your regular npm commands.

Leave a Reply