I know in the latest version of Mongoose you can pass multiple documents to the create method, or even better in my case an array of documents.
var array = [
by insert function of collection db, example:
insert
Model.collection.insert(array, (err, list) => { if (err) throw err; console.log('list:', list); });