simple-mongoose-autoincrement

Mongoose plugin for auto-increment number ID or given field name.

Usage no npm install needed!

<script type="module">
  import simpleMongooseAutoincrement from 'https://cdn.skypack.dev/simple-mongoose-autoincrement';
</script>

README

Mongoose Auto-Increment

Mongoose plugin for auto-increment number ID and given field name.

Install

npm install --save simple-mongoose-autoincrement
or
yarn add simple-mongoose-autoincrement

Usage

// Using with global.
var mongoose = require('mongoose');
var autoincrement = require('simple-mongoose-autoincrement');

mongoose.plugin(autoincrement, {/*no field name*/});
// 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

License

MIT