2

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!

Community
  • 1
  • 1
kramer65
  • 50,427
  • 120
  • 308
  • 488

1 Answers1

0

Nevermind! I already found it.

I should have read 3 lines further on, which said:

Important: Include FullCalendar if the source is missing in your app:

meteor add planettraining:jquery-fullcalendar

That fixed it.

I wish you all a beautiful day!

kramer65
  • 50,427
  • 120
  • 308
  • 488