Roshan
Roshan

Reputation: 3592

npm install from a git repository not working

I am trying to install modules hosted on github using npm install. For example

npm install git+https://github.com/balderdashy/enpeem.git

But this is not placing the module in the node_modules folder. If I run with --verbose flag, I can see that the module is getting fetched and going to appData folder.

node -v v4.6.1

npm -v 2.15.9

enter image description here

What am I doing wrong here?

Upvotes: 0

Views: 911

Answers (1)

Roshan
Roshan

Reputation: 3592

Updating node to v6.9.0 solved the problem.

Upvotes: 1

Related Questions