Himanshu Shekhar
Himanshu Shekhar

Reputation: 1262

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

I'm trying to install nodemon globally, but I'm getting warning as mentioned in attached picture. May be because of warning, I'm not able to run nodemon. My package.json

  {
   "name": "learn",
   "version": "1.0.0",
   "description": "",
   "main": "server.js",
   "scripts": {
   "test": "echo \"Error: no test specified\" && exit 1",
   "start": "node server.js"
  },
   "author": "himanshu",
   "license": "ISC",
   "dependencies": {
   "bcrypt-nodejs": "0.0.3",
   "body-parser": "^1.17.2",
   "express": "^4.15.4",
   "mongoose": "^4.11.7",
   "morgan": "^1.8.2"
  }
 }

enter image description here

Upvotes: 0

Views: 1667

Answers (1)

Biswadev
Biswadev

Reputation: 1486

I have added C:\Users\username\AppData\Roaming\npm to the environment variables of my system and it solved my issue.

Upvotes: 1

Related Questions