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 = [
You can access the variable list of parameters to your callback via arguments. So you could do something like:
Candy.create(array, function (err) { if (err) // ... for (var i=1; i