It seems I can\'t do a multiple insert in Meteor the same way it is described here in the Mongodb documentation...
In my js console :
> Test.insert([{na
For inserting multiple records in your collection you can use mikowals:batch-insert plugin.
a simple example it would be :
var names = [{name:'hello'},{name:'hello again'}];
yourCollection.batchInsert(names);
What you get here is using only one connection you will be able to insert all data in one go same as mongo bulk insert operation.