Skip to content
Advertisement

How to fix MongoError: unsupporter server version?

I am trying to run a Node.js server with MongoDB. I followed the tutorials closely. Here is my app.js file:

JavaScript

` When I try to run it, however, I get the following error:

JavaScript

How can I fix this? My package.json file says I am using version ^3.0.0-rc0. I cant seem to find a solution anywhere online.

Advertisement

Answer

Upgrade to the latest version of MongoDB. The database system, not the driver that is listed in package.json.

You also have to update your connection code slightly:

JavaScript

should be

JavaScript

That’s because the syntax changed somewhat for version 3.0.0 of the mongodb driver.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement