By cosminatomei
Hi,
I just deployed an Node.js + ExpressJS + MongoDB on an Ubuntu droplet and, although locally everything works great, here I get this message:
[Error: /home/..username../..appname../node_modules/mongodb/node_modules/bson/build/Release/bson.node: invalid ELF header]
js-bson: Failed to load c++ bson extension, using pure JS version
Even after searching, I only got to this question, being related to DigitalOcean.
Haven’t found a way to use the bson extension yet, so any advice would be appreciated.
Thank you in advance, Cosmin
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
js-bson: Failed to load c++ bson extension, using pure JS version
This is just a warning that it is falling back to the Javascript version rather than the native C++ extension. Though if this is causing issues for you, the first thing to check is that you have everything required to build native extensions. First make sure you have node-gyp installed.
npm install -g node-gyp
Now make sure you have gcc and make available on the system. On Ubuntu, use:
sudo apt-get install build-essential
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.