How to decrement like $dec?
MongoDB allows you to increment by negative values:
$inc: {score: -1}
From the MongoDB docs (linked to from the Meteor docs): The $inc update operator accepts positive and negative values. A negative value effectively decrements the specified field.
http://docs.mongodb.org/manual/reference/operator/update/inc/