npm ERR! 404没有findnpm ERR! 不好的代码0

我刚开始制作一个angularmeteor的网站,现在我想用日历来select一个date。 从这个SO回答中,我得到了我安装使用的meteorangular度UI日历的提示

meteor add angularui:ui-calendar 

然而,安装应用程序后,我的应用程序崩溃与消息说Error: Can't find npm module 'bcrypt'. Did you forget to call 'Npm.depends' in package.js within the 'npm-bcrypt' package? Error: Can't find npm module 'bcrypt'. Did you forget to call 'Npm.depends' in package.js within the 'npm-bcrypt' package? 。 所以我尝试使用以下变化安装

 npm install npm-brcrypt npm install brcrypt 

不幸的是,我总是得到一个错误说

 npm ERR! 404 Not Found npm ERR! not ok code 0 

我尝试了一些在这个线程中build议的东西,但没有任何帮助。

有人知道什么是错的,我怎么能解决这个问题? 所有的提示,欢迎!

没关系! 我已经find了。

我应该进一步阅读三行,其中说:

重要提示:如果您的应用中缺less源代码,请添加FullCalendar:

 meteor add planettraining:jquery-fullcalendar 

这固定它。

祝大家美好的一天!