Search code examples
node.jsnpminstallationnode.js-connect

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?


Solution

  • 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.