I've just started making a website with angular-meteor in which I now want to use a calendar to select a date. From this SO answer I got the tip to checkout meteor-angular-ui-calendar which I installed using
meteor add angularui:ui-calendar
After installing the app however, my app crashes with a message saying Error: Can't find npm module 'bcrypt'. Did you forget to call 'Npm.depends' in package.js within the 'npm-bcrypt' package?
. So I tried installing that using the following variations
npm install npm-brcrypt
npm install brcrypt
Unfortunately I always get an error saying
npm ERR! 404 Not Found
npm ERR! not ok code 0
I tried some of the thing suggested in this SO thread, but nothing helped.
Does anybody know what's wrong and how I can fix this? All tips are welcome!