NPM install sail_mongo——save不起作用



我想在我的帆项目中添加sails-mongo。但当我试图安装sailsmongo (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

相关内容

  • 没有找到相关文章

最新更新