mongoose-createdmodified

0.0.2 • Public • Published

About mongoose-createdmodified

mongoose plugin that adds created and modified fields to a mongoose schema.

Install

npm install mongoose-createdmodified

Usage

JavaScript

var mongoose = require('mongoose');
var createdModifiedPlugin = require('mongoose-createdmodified').createdModifiedPlugin;
 
...
 
var SampleSchema = new Schema({
  ...
});
SampleSchema.plugin(createdModifiedPlugin, {index: true});
var SampleModel = db.model("SampleModel", SampleSchema);

CoffeeScript

mongoose = require 'mongoose'
createdModifiedPlugin = require 'mongoose-createdmodified'.createdModifiedPlugin
 
...
 
SampleSchema = new Schema
  ...
SampleSchema.plugin createdModifiedPlugin{index: true}
SampleModel = db.model("SampleModel"SampleSchema)

Bugs and pull requests

Please use the github repository to notify bugs and make pull requests.

License

This software is © 2012 Marco Pantaleoni, released under the MIT licence. Use it, fork it.

See the LICENSE file for details.

Readme

Keywords

none

Package Sidebar

Install

npm i mongoose-createdmodified

Weekly Downloads

352

Version

0.0.2

License

none

Last publish

Collaborators

  • panta