mongoose-id

0.1.3 • Public • Published

Mongoose id Plugin

Simple plugin for Mongoose which replaces document attribute _id with id.

Installation

npm install mongoose-id

Usage

var mongoose = require('mongoose');
var idPlugin = require('mongoose-id');
var UserSchema = new mongoose.Schema({
    username: String
});
UserSchema.plugin(idPlugin);
mongoose.model('User', UserSchema);

By default, it will transform the document for both toJSON and toObject methods. You can disable any one by setting its option to false:

mongoose.plugin(idPlugin, {
  toJSON: false
});

Don't transform document for toJSON() of all schemas.

Setting options.remove to true will remove the id attribute:

UserSchema.plugin(idPlugin, {
  remove: true
});

License

The MIT License

Package Sidebar

Install

npm i mongoose-id

Weekly Downloads

155

Version

0.1.3

License

MIT

Last publish

Collaborators

  • loulin