npm install sails-mongo -- 保存不工作

npm install sails-mongo --save not working

我想在我的 sails 项目中添加 sails-mongo。但是当我尝试安装 sails-mongo (npm install sails-mongo --save) 时。显示错误:

~/newWebApp $ npm install sails-mongo --save

npm ERR! Linux 3.13.0-24-generic
npm ERR! argv "node" "/usr/bin/npm" "install" "sails-mongo" "--save"
npm ERR! node v0.10.37
npm ERR! npm  v3.3.3

npm ERR! Cannot set property 'lodash' of undefined
npm ERR! 
npm ERR! If you need help, you may report this error at:
npm ERR!     <https://github.com/npm/npm/issues>
npm ERR! Linux 3.13.0-24-generic
npm ERR! argv "node" "/usr/bin/npm" "install" "sails-mongo" "--save"
npm ERR! node v0.10.37
npm ERR! npm  v3.3.3

npm ERR! Cannot set property 'waterline-criteria' of undefined
npm ERR! 
npm ERR! If you need help, you may report this error at:

npm ERR! Linux 3.13.0-24-generic
npm ERR! argv "node" "/usr/bin/npm" "install" "sails-mongo" "--save"
npm ERR! node v0.10.37
npm ERR! npm  v3.3.3

npm ERR! Cannot set property 'waterline-errors' of undefined
npm ERR! 
npm ERR! If you need help, you may report this error at:

npm ERR! Linux 3.13.0-24-generic
npm ERR! argv "node" "/usr/bin/npm" "install" "sails-mongo" "--save"
npm ERR! node v0.10.37
npm ERR! npm  v3.3.3

npm ERR! Cannot set property 'fs-extra' of undefined
npm ERR! 
npm ERR! If you need help, you may report this error at:

npm ERR! Linux 3.13.0-24-generic
npm ERR! argv "node" "/usr/bin/npm" "install" "sails-mongo" "--save"
npm ERR! node v0.10.37
npm ERR! npm  v3.3.3

npm ERR! Cannot set property 'waterline-cursor' of undefined
npm ERR! 
npm ERR! If you need help, you may report this error at:


npm ERR! Please include the following file with any support request:
npm ERR!     /home/vgulp/newWebApp/npm-debug.log

这是由于 sails-mongo(或其依赖项)包与最新的 npm 不兼容。

sudo npm install npm@2.14.5 -g

然后运行

npm install sails-mongo --save

应该可以解决您的问题。