Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
mongodb-legacy
Advanced tools
Attention :memo:
This is a wrapper of the mongodb
driver, if you are starting a new project you likely just want to use the driver directly:
This package is intended to assist in migrating to promise based APIs.
We have wrapped every driver method to continue offering the optional callback support some projects may be relying on to incrementally migrate to promises.
Any new APIs added to the driver will not offer optional callback support.
If callback usage is needed for any new APIs, we would suggest using .then
/.catch
or node's callbackify to get that desired API.
The main driver package mongodb
will be dropping optional callback support in the next major version (v5) in favor of async
/await
syntax.
// Just add '-legacy' to my mongodb import
import { MongoClient } from 'mongodb-legacy';
const client = new MongoClient();
const db = client.db();
const collection = db.collection('pets');
// Legacy projects may have intermixed API usage:
app.get('/endpoint_promises', (req, res) => {
collection
.findOne({})
.then(result => {
res.end(JSON.stringify(result));
})
.catch(error => {
res.errorHandling(error);
});
});
app.get('/endpoint_callbacks', (req, res) => {
collection.findOne({}, (error, result) => {
if (error) return res.errorHandling(error);
res.end(JSON.stringify(result));
});
});
In your existing project add mongodb-legacy
to your package.json
with the following command.
npm install mongodb-legacy
We recommend replacing your mongodb
dependency with this one.
This package uses caret semver range for the main mongodb
package, (ex. ^4.10.0
) which will adopt minor version bumps as they are released.
The next major release of the driver (v5) will drop support for callbacks.
This package will also have a major release at that time to update the dependency requirement to ^5.0.0
.
Users can expect to be able to upgrade to v5
adopting the changes and features shipped in that version while using this module to maintain any callback code they still need to work on migrating.
The API is inherited from the driver, which is documented here. If it is relevant to inspect the precise differences, you can peruse the type definitions of wrapped APIs.
The wrappers are implemented as subclasses of each of the existing driver's classes with extra logic to handle the optional callback behavior. And all other driver exports are re-exported directly from the wrapper. This means any new APIs added to the driver will be automatically pulled in as long as the updated driver is installed.
Take this hypothetical example:
// Just add '-legacy' to my mongodb import
import { MongoClient } from 'mongodb-legacy';
const client = new MongoClient();
const db = client.db();
const collection = db.collection('pets');
// Returns an instance of LegacyFindCursor which is a subclass of FindCursor
const dogCursor = collection.find({ kind: 'dog' });
// Using .next with callbacks still works!
dogCursor.next((error, dog) => {
if (error) return handling(error);
console.log(dog);
});
// Brand new hypothetical api that pets all dogs! (does not support callbacks)
dogCursor.petAll().then(result => {
console.log('all dogs got pats!');
});
NOTE: The
petAll()
api is brand new in this hypothetical example and so would not support an optional callback. If adopting this API is deep inside code that already relies on eventually calling a callback to indicate the end of an operation it is possible to use.then
/.catch
chains to handle the cases that are needed. We recommend offloading this complexity to node's callbackify utility:callbackify(() => dogCursor.petAll())(callback)
The new example petAll()
API will be pulled in since we're building off the existing driver API.
The typescript definitions work the same way so next()
still reports its promise and callback variants and the petAll()
API is pulled in from the driver's definitions.
You can reach out on our JIRA: https://jira.mongodb.org/projects/NODE and let us know any issues your run into while using this package.
:copyright: 2022-present MongoDB
FAQs
The legacy MongoDB driver with callback support for Node.js
We found that mongodb-legacy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.