Mongoose plugin for auto-increment number ID or given field name.
npm install simple-mongoose-autoincrementMongoose plugin for auto-increment number ID and given field name.
``bash`
npm install --save simple-mongoose-autoincrement`
#####orbash`
yarn add simple-mongoose-autoincrement
`js
// Using with global.
var mongoose = require('mongoose');
var autoincrement = require('simple-mongoose-autoincrement');
mongoose.plugin(autoincrement, {/no field name/});
``js``
// Using with a model and option.
var mongoose = require('mongoose');
var autoincrement = require('simple-mongoose-autoincrement');
var sampleSchema = mongoose.Schema({
data: String
});
sampleSchema.plugin(autoincrement, {field: 'sequnece' /with field name/});
###If you need more informations see test.js