Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
mongoose-update-if-current
Advanced tools
Optimistic concurrency control plugin for Mongoose v4.8 and higher.
This plugin brings optimistic concurrency control to Mongoose documents by incrementing document version numbers on each save, and preventing previous versions of a document from being saved over the current version.
Inspired by issue #4004 in the Mongoose GitHub repository.
$ npm install --save mongoose
$ npm install --save mongoose-update-if-current
Import the plugin from the package:
/* Using ES2015 imports */
import { updateIfCurrentPlugin } from 'mongoose-update-if-current';
/* Using require() */
var updateIfCurrentPlugin = require('mongoose-update-if-current').updateIfCurrentPlugin;
Add it to mongoose as a global plugin, or add it to a single schema:
/* Global plugin */
mongoose.plugin(updateIfCurrentPlugin);
/* Single schema */
const mySchema = new mongoose.Schema({ ... });
mySchema.plugin(updateIfCurrentPlugin);
The plugin will hook into the save()
function on schema documents to increment the version and check that it matches the version in the database before persisting it.
NB: If the schema does not have a version key, then the plugin will enable the default version key of __v
. If the schema has a custom version key set, then the plugin will automatically regognise and use it.
Let's save a new Book
to MongoDB.
// Save a new Book document to the database
let book = await new Book({
title: 'The Prince',
author: 'Niccolò Machiavelli',
}).save();
Our book document should look something like this:
{
__v: 0,
title: 'The Prince',
author: 'Niccolò Machiavelli',
...
}
Now that it's in the database, a user fetches the book and updates it.
let book = await Book.findOne({ title: 'The Prince'});
book.title = 'Il Principe';
book = await book.save();
The book document in MongoDB now looks like this:
{
__v: 1, // note the incremented version
title: 'Il Principe',
author: 'Niccolò Machiavelli',
...
}
Meanwhile, another user tries to update the book, fetching it before it was updated.
// Before the call to save() above, so book.__v is 0
let book = await Book.findOne({ title: 'The Prince'});
// Now the other user updates the book, so our version is out of date
// Try to update the book based on the stale version
book.author = 'Niccolò di Bernardo dei Machiavelli';
book = await book.save(); // throws
When the other user tries to save an out-of-date version of the document to the database, the operation fails and throws an error.
See the __tests__
directory for more usage examples.
Document.save()
, but you can still force updates using Model.update()
, Model.findByIdAndUpdate()
or Model.findOneAndUpdate()
if you so desire.save()
is called, contrary to Mongoose's default behaviour.The project uses the AirBnB JavaScript code style adapted for TypeScript. The test suites are built on Facebook's Jest. Make sure that any changes you make are fully tested and linted before submitting a pull request!
Command | Description |
---|---|
npm test | Runs tests |
npm run build | Builds the project |
npm run ci | Builds the project, runs tests and reports coverage |
npm run clean | Cleans build output directories |
npm run tsc | Transpiles TypeScript to ES5 |
npm run tslint | Lints TypeScript code |
FAQs
Optimistic concurrency control (OCC) plugin for mongoose
The npm package mongoose-update-if-current receives a total of 1,893 weekly downloads. As such, mongoose-update-if-current popularity was classified as popular.
We found that mongoose-update-if-current demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.