Tutorials References Exercises Videos Menu
Create Website Get Certified Upgrade

MongoDB Drivers


MongoDB Drivers

The MongoDB Shell (mongosh) is great, but generally you will need to use MongoDB in your application. To do this, MongoDB has many language drivers.

The language drivers allow you to interact with your MongoDB database using the methods you've learned so far in `mongosh` but directly in your application.

These are the current officially supported drivers:

There are other community supported libraries as well.

Let's see how to use the drivers using Node.js next.