node-mongodb-native

README

MongoDB NodeJS Driver


The official MongoDB driver for Node.js.

Upgrading to version 4? Take a look at our upgrade guide here !

Quick Links


| what | where |
|:--- |:--- |
| documentation| www.mongodb.com/docs/drivers/node |
| api-doc| mongodb.github.io/node-mongodb-native |
| npm package| www.npmjs.com/package/mongodb |
| source| github.com/mongodb/node-mongodb-native |
| mongodb| www.mongodb.com |
| changelog| HISTORY.md |
| upgrade to v4| etc/notes/CHANGES_4.0.0.md |
| contributing| CONTRIBUTING.md |

Bugs / Feature Requests


Think you’ve found a bug? Want to see a new feature in node-mongodb-native ? Please open a case in our issue management tool, JIRA:

Create an account and login jira.mongodb.org.
Navigate to the NODE project jira.mongodb.org/browse/NODE.
Click Create Issue- Please provide as much information as possible about the issue type and how to reproduce it.

Bug reports in JIRA for all driver projects (i.e. NODE, PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.

Support / Feedback


For issues with, questions about, or feedback for the Node.js driver, please look into our support channels. Please do not email any of the driver developers directly with issues or questions - you're more likely to get an answer on the MongoDB Community Forums.

Change Log


Change history can be found in HISTORY.md.

Compatibility


For version compatibility matrices, please refer to the following links:

MongoDB
NodeJS

Typescript Version


We recommend using the latest version of typescript, however we currently ensure the driver's public types compile against typescript@4.1.6. This is the lowest typescript version guaranteed to work with our driver: older versions may or may not work - use at your own risk. Since typescript does not restrict breaking changes to major versions we consider this support best effort. If you run into any unexpected compiler failures against our supported TypeScript versions please let us know by filing an issue on our JIRA.

Installation


The recommended way to get started using the Node.js 4.x driver is by using the npm (Node Package Manager) to install the dependency in your project.

After you've created your own project using npm init, you can run:

  1. ``` shell
  2. npm install mongodb
  3. # or ...
  4. yarn add mongodb
  5. ```

This will download the MongoDB driver and add a dependency entry in your package.json file.

If you are a Typescript user, you will need the Node.js type definitions to use the driver's definitions:

  1. ``` shell
  2. npm install -D @types/node
  3. ```

Driver Extensions


The MongoDB driver can optionally be enhanced by the following feature packages:

Maintained by MongoDB:

Zstd network compression - @mongodb-js/zstd
MongoDB field level and queryable encryption - mongodb-client-encryption
GSSAPI / SSPI / Kerberos authentication - kerberos

Some of these packages include native C++ extensions. Consult the trouble shooting guide here if you run into compilation issues.

Third party:

Snappy network compression - snappy
AWS authentication - @aws-sdk/credential-providers

Quick Start


This guide will show you how to set up a simple application using Node.js and MongoDB. Its scope is only how to set up the driver and perform the simple CRUD operations. For more in-depth coverage, see the official documentation.

Create the package.json file


First, create a directory where your application will live.

  1. ``` shell
  2. mkdir myProject
  3. cd myProject
  4. ```

Enter the following command and answer the questions to create the initial structure for your new project:

  1. ``` shell
  2. npm init -y
  3. ```

Next, install the driver as a dependency.

  1. ``` shell
  2. npm install mongodb
  3. ```

Start a MongoDB Server


For complete MongoDB installation instructions, see the manual.

Download the right MongoDB version from MongoDB
Create a database directory (in this case under /data).
Install and start a mongod process.

  1. ``` shell
  2. mongod --dbpath=/data
  3. ```

You should see the mongodprocess start up and print some status information.

Connect to MongoDB


Create a new app.jsfile and add the following code to try out some basic CRUD operations using the MongoDB driver.

Add code to connect to the server and the database myProject:

NOTE:All the examples below use async/await syntax.


However, all async API calls support an optional callback as the final argument, if a callback is provided a Promise will not be returned.

NOTE:Resolving DNS Connection issues


Node.js 18 changed the default DNS resolution ordering from always prioritizing ipv4 to the ordering returned by the DNS provider.  In some environments, this can result in localhost resolving to an ipv6 address instead of ipv4 and a consequent failure to connect to the server.

This can be resolved by:

specifying the ip address family using the MongoClient family option (MongoClient(<uri>, { family: 4 } ) )
launching mongod or mongos with the ipv6 flag enabled (--ipv6 mongod option documentation )
using a host of 127.0.0.1 in place of localhost
specifying the DNS resolution ordering with the --dns-resolution-order Node.js command line argument (e.g. node --dns-resolution-order=ipv4first )

  1. ``` js
  2. const { MongoClient } = require('mongodb');
  3. // or as an es module:
  4. // import { MongoClient } from 'mongodb'

  5. // Connection URL
  6. const url = 'mongodb://localhost:27017';
  7. const client = new MongoClient(url);

  8. // Database Name
  9. const dbName = 'myProject';

  10. async function main() {
  11.   // Use connect method to connect to the server
  12.   await client.connect();
  13.   console.log('Connected successfully to server');
  14.   const db = client.db(dbName);
  15.   const collection = db.collection('documents');

  16.   // the following code examples can be pasted here...

  17.   return 'done.';
  18. }

  19. main()
  20.   .then(console.log)
  21.   .catch(console.error)
  22.   .finally(() => client.close());
  23. ```

Run your app from the command line with:

  1. ``` shell
  2. node app.js
  3. ```

The application should print Connected successfully to serverto the console.

Insert a Document


Add to app.jsthe following function which uses the insertManymethod to add three documents to the documentscollection.

  1. ``` js
  2. const insertResult = await collection.insertMany([{ a: 1 }, { a: 2 }, { a: 3 }]);
  3. console.log('Inserted documents =>', insertResult);
  4. ```

The insertManycommand returns an object with information about the insert operations.

Find All Documents


Add a query that returns all the documents.

  1. ``` js
  2. const findResult = await collection.find({}).toArray();
  3. console.log('Found documents =>', findResult);
  4. ```

This query returns all the documents in the documentscollection. If you add this below the insertMany example you'll see the document's you've inserted.

Find Documents with a Query Filter


Add a query filter to find only documents which meet the query criteria.

  1. ``` js
  2. const filteredDocs = await collection.find({ a: 3 }).toArray();
  3. console.log('Found documents filtered by { a: 3 } =>', filteredDocs);
  4. ```

Only the documents which match 'a' : 3 should be returned.

Update a document


The following operation updates a document in the documentscollection.

  1. ``` js
  2. const updateResult = await collection.updateOne({ a: 3 }, { $set: { b: 1 } });
  3. console.log('Updated documents =>', updateResult);
  4. ```

The method updates the first document where the field ais equal to 3by adding a new field bto the document set to 1. updateResult contains information about whether there was a matching document to update or not.

Remove a document


Remove the document where the field ais equal to 3.

  1. ``` js
  2. const deleteResult = await collection.deleteMany({ a: 3 });
  3. console.log('Deleted documents =>', deleteResult);
  4. ```

Index a Collection


Indexes can improve your application's performance. The following function creates an index on the afield in the documentscollection.

  1. ``` js
  2. const indexName = await collection.createIndex({ a: 1 });
  3. console.log('index name =', indexName);
  4. ```

For more detailed information, see the indexing strategies page.

Error Handling


If you need to filter certain errors from our driver we have a helpful tree of errors described in etc/notes/errors.md.

It is our recommendation to use instanceof checks on errors and to avoid relying on parsing error.message and error.name strings in your code. We guarantee instanceof checks will pass according to semver guidelines, but errors may be sub-classed or their messages may change at any time, even patch releases, as we see fit to increase the helpfulness of the errors.

Any new errors we add to the driver will directly extend an existing error class and no existing error will be moved to a different parent class outside of a major release. This means instanceof will always be able to accurately capture the errors that our driver throws (or returns in a callback).

  1. ``` ts
  2. const client = new MongoClient(url);
  3. await client.connect();
  4. const collection = client.db().collection('collection');

  5. try {
  6.   await collection.insertOne({ _id: 1 });
  7.   await collection.insertOne({ _id: 1 }); // duplicate key error
  8. } catch (error) {
  9.   if (error instanceof MongoServerError) {
  10.     console.log(`Error worth logging: ${error}`); // special case for some reason
  11.   }
  12.   throw error; // still want to crash
  13. }
  14. ```

Next Steps


MongoDB Documentation
MongoDB Node Driver Documentation
Read about Schemas
Star us on GitHub

License


Apache 2.0

© 2009-2012 Christian Amor Kvalheim © 2012-present MongoDB Contributors