when i start to run my node project below:
Command代码
then it apperred the err below:
Error: Cannot find module '/Users/xxx/Documents/workspace/xxx-project/node_modules/bcrypt/lib/binding/napi-v3/bcrypt_lib.node'then i try this: $ npm rebuild
try using build from source like this:
Command代码
For anyone else here who is getting the warning:
node-pre-gyp WARN Using needle for node-pre-gyp https download
it either needs to be built from source or installed via binary download. If you have Visual Studio installed, you ca try npm install sqlite3 --build-from-source
, which is also a safer option.
bcrypt
needs to be built natively. If you don't feel comfortable building it with c++ compiler, I suggest you take a look at the bcrypt-nodejs
module.