Tôi đang thực hiện một dự án nodejs cho trường học. Tôi không thể cài đặt bcrypt với npm vì vậy tôi đã cài đặt bcrypt-nodejs và hôm qua dự án đã hoạt động tốt. Nhưng hôm nay, khi tôi thực hiện một "ứng dụng nút", tôi gặp lỗi này:
/.../node_modules/bcrypt/node_modules/bindings/bindings.js:79
throw e
^
Error: /.../node_modules/bcrypt/build/Release/bcrypt_lib.node: invalid ELF header
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at bindings (/.../node_modules/bcrypt/node_modules/bindings/bindings.js:74:15)
at Object.<anonymous> (/.../node_modules/bcrypt/bcrypt.js:1:97)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
tệp package.json của tôi trông giống như sau:
{
"name": "Supinfarm",
"version": "0.0.0",
"env": {
"PYTHON": "/usr/bin/python2.6"
},
"dependencies": {
"express": "3.1.0",
"connect-flash": "*",
"jade": "*",
"stylus": "*",
"passport": "*",
"passport-local": "*",
"mongoose": "*",
"bcrypt": "*"
}
}
Tôi đang sử dụng Linux ubuntu 10.04 LTS Tôi đã cố gắng tìm giải pháp trên google mà không thành công ... Ai đó có thể giúp tôi không?