
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
mongoose-plugin-diff
Advanced tools
A mongoose.js plugin to report document modification differences.
The plugin uses mongoose's modification methods for determining which properties have been changed.
The original document values are snap shot post-init for existing documents as well as post-save for all documents.
npm i --save mongoose-plugin-diff
Example
const diffPlugin = require('mongoose-plugin-diff');
const schema = Schema({...});
schema.plugin(diffPlugin[, OPTIONS]);
Kind: inner property of mongoose-plugin-diff
| Param | Type | Default | Description |
|---|---|---|---|
| [options] | object | ||
| [options.optionKey] | string | "diff" | the path options key to mark paths for inclusion in monitoring for modification. If no paths are provided or tagged, document modification is monitored. |
| [options.paths] | array | the paths paths for monitoring for modification. If no paths are provided or tagged, document modification is monitored. | |
| [options.snapShotPath] | string | "__snapShot" | the path to store snap shot properties for capturing original values. |
| [options.methodName] | string | "getDiff" | the method name for creating an object with the original values for modified properties. |
const diffPlugin = require('mongoose-plugin-diff');
const schema = Schema({foo: String, bar: String});
schema.plugin(diffPlugin);
const Foo = mongoose.model('Foo', schema);
Foo.findOne().then(foo => { // {foo: 'My orig', bar: 'My other orig'}
foo.getDiff(); // {}
foo.foo = 'My update';
foo.getDiff(); // {foo: 'My orig'}
foo.foo = 'My second update';
return foo.save();
}).then(foo => { // {foo: 'My second update', bar: 'My other orig'}
foo.getDiff(); // {foo: 'My update'}
});
const diffPlugin = require('mongoose-plugin-diff');
const schema = Schema({
foo: {
type: String
},
bar: {
type: String,
diff: true // indicates to monitor this property for modification
}
});
schema.plugin(diffPlugin);
// Alternatively, paths to monitor can be provided by the plugin options
// schema.plugin(diffPlugin, { paths: ['bar'] });
const Foo = mongoose.model('Foo', schema);
Foo.findOne().then(foo => { // {foo: 'My orig', bar: 'My other orig'}
foo.getDiff(); // {}
foo.foo = 'My update';
foo.getDiff(); // {}
foo.bar = 'My other update';
foo.getDiff(); // {bar: 'My other orig'}
foo.bar = 'My other next update';
return foo.save();
}).then(foo => { // {foo: 'My update', bar: 'My other second update'}
foo.getDiff(); // {foo: 'My other update'}
});
Apache 2.0
FAQs
Mongoose.js plugin report document modification differences.
We found that mongoose-plugin-diff 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.