MCPcopy
hub / github.com/mongodb/node-mongodb-native

github.com/mongodb/node-mongodb-native @v7.4.0 sqlite

repository ↗ · DeepWiki ↗ · release v7.4.0 ↗
9,434 symbols 36,934 edges 960 files 723 documented · 8%
README

MongoDB Node.js Driver

The official MongoDB driver for Node.js.

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

Quick Links

Site Link
Documentation www.mongodb.com/docs/drivers/node
API Docs mongodb.github.io/node-mongodb-native
npm package www.npmjs.com/package/mongodb
MongoDB www.mongodb.com
MongoDB University learn.mongodb.com
MongoDB Developer Center www.mongodb.com/developer
Stack Overflow stackoverflow.com
Source Code github.com/mongodb/node-mongodb-native
Upgrade to v7 etc/notes/CHANGES_7.0.0.md
Contributing CONTRIBUTING.md
Changelog HISTORY.md

Release Integrity

Releases are created automatically and signed using the Node team's GPG key. All release packages provided as part of a GitHub release are signed. To verify the provided packages, download the key and import it using gpg:

gpg --import node-driver.asc

The GitHub release contains a detached signature file for the NPM package (named mongodb-X.Y.Z.tgz.sig).

The following command returns the link npm package.

npm view mongodb@vX.Y.Z dist.tarball

Using the result of the above command, a curl command can return the official npm package for the release.

To verify the integrity of the downloaded package, run the following command:

gpg --verify mongodb-X.Y.Z.tgz.sig mongodb-X.Y.Z.tgz

[!Note] No GPG verification is done when using npm to install the package. The contents of the GitHub tarball and npm's tarball are identical.

Releases published to the npm registry also include a provenance attestation, which cryptographically links the package to its source repository and build workflow. To verify provenance:

npm audit signatures

The MongoDB Node.js driver follows semantic versioning for its releases.

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

The driver currently supports 4.2+ servers.

For exhaustive server and runtime version compatibility matrices, please refer to the following links:

Component Support Matrix

The following table describes add-on component version compatibility for the Node.js driver. Only packages with versions in these supported ranges are stable when used in combination.

Component mongodb@3.x mongodb@4.x mongodb@5.x mongodb@<6.12 mongodb@>=6.12 mongodb@7.x
bson ^1.0.0 ^4.0.0 ^5.0.0 ^6.0.0 ^6.0.0 ^7.0.0
bson-ext ^1.0.0 || ^2.0.0 ^4.0.0 N/A N/A N/A N/A
kerberos ^1.0.0 ^1.0.0 || ^2.0.0 ^1.0.0 || ^2.0.0 ^2.0.1 ^2.0.1 ^7.0.0
mongodb-client-encryption ^1.0.0 ^1.0.0 || ^2.0.0 ^2.3.0 ^6.0.0 ^6.0.0 ^7.0.0
mongodb-legacy N/A ^4.0.0 ^5.0.0 ^6.0.0 ^6.0.0 N/A
@mongodb-js/zstd N/A ^1.0.0 ^1.0.0 ^1.1.0 ^1.1.0 || ^2.0.0 ^7.0.0

Typescript Version

We recommend using the latest version of typescript, however we currently ensure the driver's public types compile against typescript@5.6.0. 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.

Additionally, our Typescript types are compatible with the ECMAScript standard for our minimum supported Node version. Currently, our Typescript targets es2023.

Running in Custom Runtimes

We are working on removing Node.js as a dependency of the driver, so that in the future it will be possible to use the driver in non-Node environments. This work is currently in progress, and if you're curious, this is our first runtime adapter commit.

Some things to keep in mind if you are using a non-Node runtime:

  1. Users of Webpack/Vite may need to prevent crypto polyfill injection.
  2. Auth mechanism SCRAM-SHA-1 has a hard dependency on Node.js.
  3. Auth mechanism SCRAM-SHA-1 is not supported in FIPS mode.

Installation

The recommended way to get started using the Node.js 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:

npm install mongodb

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:

npm install -D @types/node

Driver Extensions

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

Maintained by MongoDB:

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

Third party:

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.

mkdir myProject
cd myProject

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

npm init -y

Next, install the driver as a dependency.

npm install mongodb

Start a MongoDB Server

For complete MongoDB installation instructions, see the manual.

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

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

Connect to MongoDB

Create a new app.js file 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: 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)
const { MongoClient } = require('mongodb');
// or as an es module:
// import { MongoClient } from 'mongodb'

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

// Database Name
const dbName = 'myProject';

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

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

  return 'done.';
}

main()
  .then(console.log)
  .catch(console.error)
  .finally(() => client.close());

Run your app from the command line with:

node app.js

The application should print Connected successfully to server to the console.

Insert a Document

Add to app.js the following function which uses the insertMany method to add three documents to the documents collection.

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

The insertMany command returns an object with information about the insert operations.

Find All Documents

Add a query that returns all the documents.

const findResult = await collection.find({}).toArray();
console.log('Found documents =>', findResult);

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

Find Documents with a Query Filter

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

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

Only the document

Extension points exported contracts — how you extend this code

MongoDBLogWritable (Interface)
(no doc) [5 implementers]
src/mongo_logger.ts
TestModel (Interface)
* test with collection type
test/types/community/collection/insertX.test-d.ts
CommandWriteConcernOptions (Interface)
The write concern options that decorate the server command.
src/write_concern.ts
KillCursorsCommand (Interface)
* https://www.mongodb.com/docs/manual/reference/command/killCursors/ * @internal
src/operations/kill_cursors.ts
AccessToken (Interface)
* The access token that libmongocrypt expects for Azure kms.
src/client-side-encryption/providers/azure.ts
MongoDBMetadataUI (Interface)
(no doc)
global.d.ts
JsonVersionSchema (Interface)
(no doc)
etc/docs/utils.ts
FailPoint (Interface)
(no doc)
test/tools/utils.ts

Core symbols most depended-on inside this repo

push
called by 4422
src/utils.ts
apply
called by 2247
src/write_concern.ts
on
called by 2034
src/mongo_types.ts
$
called by 2031
docs/s/js/jquery.js
find
called by 2023
src/collection.ts
db
called by 1492
test/tools/runner/config.ts
add
called by 1405
src/sdam/server_selection.ts
remove
called by 1380
src/utils.ts

Shape

Function 5,956
Method 2,419
Class 691
Interface 364
Enum 4

Languages

TypeScript100%
Python1%

Modules by API surface

src/error.ts177 symbols
src/utils.ts107 symbols
src/bulk/common.ts88 symbols
docs/s/lib/zeroclipboard/ZeroClipboard.js83 symbols
docs/3.7/js/jquery.js83 symbols
docs/3.6/js/jquery.js83 symbols
docs/3.5/js/jquery.js83 symbols
docs/3.4/js/jquery.js83 symbols
docs/3.3/js/jquery.js83 symbols
docs/3.2/js/jquery.js83 symbols
docs/3.1/js/jquery.js83 symbols
docs/3.0/js/jquery.js83 symbols

Dependencies from manifests, versioned

@aws-sdk/credential-providers3.876.0 · 1×
@iarna/toml2.2.5 · 1×
@istanbuljs/nyc-config-typescript1.0.2 · 1×
@microsoft/api-extractor7.54.0 · 1×
@microsoft/tsdoc-config0.17.1 · 1×
@mongodb-js/saslprep1.3.0 · 1×
@mongodb-js/zstd7.0.0 · 1×
@types/chai4.3.16 · 1×
@types/chai-subset1.3.5 · 1×
@types/express5.0.5 · 1×
@types/kerberos1.1.5 · 1×
@types/mocha10.0.9 · 1×

Datastores touched

(mongodb)Database · 1 repos
adminDatabase · 1 repos
dbDatabase · 1 repos
test-clusterDatabase · 1 repos
fooDatabase · 1 repos
adminDBDatabase · 1 repos
db2Database · 1 repos
dddddDatabase · 1 repos

For agents

$ claude mcp add node-mongodb-native \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact