在该教程的《用户系统》章节中,需要安装2个npm包:
meteor add ian:accounts-ui-bootstrap-3
meteor add accounts-password
1、关于accounts-ui-bootstrap-3安装,一般情况会成功,但是运行报错:
While building for web.browser:
error: no plugin found for accounts_ui.styl in ian:accounts-ui-bootstrap-3; a plugin for *.styl
was active when it was published but none is now
解决方案:
(1)先删除:meteor remove ian:accounts-ui-bootstrap-3
(2)然后添加:meteor add stylus
(3)然后再添加:meteor add ian:accounts-ui-bootstrap-3
2、关于accounts-password安装报错:
和windows系统,vs版本有关的问题在网上有很多解决方案,主要解决一个重要问题:版本问题
每次安装的错误中,都会有一个bcrypt@0.7.7,也就是每次安装都会安装0.7.7这个版本
解决方案:
(1)系统先设置显示隐藏文件
(2)在该项目文件中找到的.meteor里的versions,把npm-bcrypt@后的数字改成0.9.2(或者另外创建一个项目直接添加该包,如果能添加上,就在那个项目中看版本号是多少)如果没有npm-bcrypt@就直接加上。
(3)meteor npm install --save bcrypt
(4)meteor add accounts-password
其它方案:
(1)npm install bcrypt
(2)meteor add accounts-password
系统:Linux ubuntu / MAC OS (windows目前没有很好的解决方案)