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 = [
With Mongoose v5.1.5, we can use insertMany() method with array passed.
const array = [ {firstName: "Jelly", lastName: "Bean"}, {firstName: "John", lastName: "Doe"} ]; Model.insertMany(array) .then(function (docs) { response.json(docs); }) .catch(function (err) { response.status(500).send(err); });