- ( , ).
/:
Counter = new Mongo.Collection("counter");
:
Template.myTemplate.helpers({
counter: function () {
return Counter.findOne();
}
});
, :
if (Counter.find().count() === 0) {
Counter.insert({value: 0});
}
:
Counter.update({}, {$inc: {value: 1}});
, - _id.