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
From the Meteor leaderboard example code, it looks like you cannot bulk insert. You can either use a loop or underscore iteration function.
Using underscore,
var names = [{name:'hello'},{name:'hello again'}] _.each(names, function(doc) { Test.insert(doc); })