sergio
sergio

Reputation: 639

npm install errors with Connect module

I have installed all dependencies related with this project https://github.com/msfrisbie/mean-stripdown.git with the command npm install.

Then I got the next errors related only with [email protected] module:

 npm ERR! missing [email protected] required by [email protected]
 npm ERR! missing [email protected] required by [email protected]
 npm ERR! missing [email protected] required by [email protected] 
 ...

How is this possible?

Upvotes: 0

Views: 2136

Answers (1)

hexacyanide
hexacyanide

Reputation: 91619

The module you're trying to install requires Express, which requires [email protected], which is unable to find the modules you're listing. Trying use npm cache clean and then reinstalling. If that doesn't work, you can alternately completely remove the node_modules folder.

Upvotes: 1

Related Questions