0

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?

4
  • Try to use the command npm install enpeem --save instead Commented Oct 19, 2016 at 17:02
  • 1
    Works for me with Node v6.5.0 Commented Oct 19, 2016 at 17:03
  • Worked after updating node to v6.9.0. Commented Oct 19, 2016 at 17:21
  • Rather than post your solution as a comment, please post an answer to your own question. This makes it easier for other users to find the answer, and to see that your problem has been solved. (You will be able to accept your answer after a couple days.) Commented Oct 19, 2016 at 18:13

1 Answer 1

1

Updating node to v6.9.0 solved the problem.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.