获取MongoDb中Collection的最后一个id值, 自增. MongoDb本身自带的_id用的是uuid, 运算成本太高了, 非常不实用, 所以用这个替代.
var mg = require('mglastone')
mg.MGConfig('mongodb://localhost:1700/MGLastOne')
mg.MGLastOneAsync('aaa')
.then(function(m) {
console.log(m)
})
.catch(function(error) {
console.log(error)
})
npm install mglastone