Windows and bcrypt 1.0.3

Just an FYI for all Windows users - if you try to install bcrypt 1.0.3 with meteor npm install the build process will fail. This is due to the outdated Node version included in Meteor.

You currently have two options:

a) Pin the bcrypt version to 1.0.2 like this:

"dependencies": {
    ...
    "bcrypt": "1.0.2", 
   ...
}

b) Install a recent Node version (the LTS version (i.e. v6) will not work, use v8!), use npm install and live with this warning message in the console:

1 Like