npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mongoose-audit-track

v1.0.7

Published

Manage Mongo Collection diff History and versions

Downloads

20

Readme

mongoose-audit-track

=============

we added the support of findOneAndUpdate() to npm pacakge mongoose-diff-history


Stores and Manages all the differences and versions, any Mongo collection goes through it's lifecycle.

Installation


npm

npm install mongoose-audit-track

Operation


Each update will create a history record with jsonDiff of the change. This helps in tracking all the changes happened to an object from the beginning.

Following will be the structure of the diff history being saved:

diff Collection schema:

_id : mongo id of the diff object
collectionName: Name of the collection for which diff is saved
collectionId : Mongo Id of the collection being modified
diff: diff object
user: User who modified
reason: Why the collection is modified
createdAt: When the collection is modified
_v: version

Usage


Use as you would any Mongoose plugin:

var mongoose = require('mongoose'),
    diffHistory = require('mongoose-audit-track'),
    schema = new mongoose.Schema({ ... });
    schema.plugin(diffHistory.plugin);

The plugin also has an omit option which accepts either a string or array. This will omit the given keys from history. Follows dot syntax for deeply nested values.

const mongoose = require("mongoose");
const diffHistory = require("mongoose-audit-track");

const schema = new mongoose.Schema({
  someField: String,
  ignoredField: String,
  some: {
    deepField: String
  }
});

schema.plugin(diffHistory.plugin, { omit: ["ignoredField", "some.deepField"] });

Helper Methods


You can get all the histories created for an object using following method:

const diffHistory = require("mongoose-audit-track");
const expandableFields = ["abc", "def"];

diffHistory.getHistories("modelName", ObjectId, expandableFields, function(
  err,
  histories
) {});

// or, as a promise
diffHistory
  .getHistories("modelName", ObjectId, expandableFields)
  .then(histories => {})
  .catch(console.error);

If you just want the raw histories return with json diff patches:

const diffHistory = require("mongoose-audit-track");

diffHistory.getDiffs("modelName", ObjectId, function(err, histories) {});

// or, as a promise
diffHistory
  .getDiffs("modelName", ObjectId)
  .then(histories => {})
  .catch(console.error);

// with optional query parameters:
diffHistory
  .getDiffs("modelName", ObjectId, { select: "diff user" })
  .then(histories => {})
  .catch(console.error);

You can get an older version of the object using following method:

const diffHistory = require("mongoose-audit-track");

diffHistory.getVersion(mongooseModel, ObjectId, version, function(
  err,
  oldObject
) {});

// or, as a promise
diffHistory
  .getVersion(mongooseModel, ObjectId, version)
  .then(oldObject => {})
  .catch(console.error);

You can also use Mongoose query options with getVersion like so:

const diffHistory = require("mongoose-audit-track");

diffHistory.getVersion(
  mongooseModel,
  ObjectId,
  version,
  { lean: true },
  function(err, oldObject) {}
);

// or, as a promise
diffHistory
  .getVersion(mongooseModel, ObjectId, version, { lean: true })
  .then(oldObject => {})
  .catch(console.error);

Example


I have created an example express service (documentation here), demonstrating this plugin via an simple employee schema, checkout example directory in this repo.