As I work on developing a game with Meteor, I have been advised by many to use mongo db due to its vanilla nature, speed, and reactivity. I have come to understand that I need to actively monitor updates in mongo db in order to react to received data and update the DOM accordingly.
Is it possible to utilize Meteor Trackers in the following manner:
var handle = Tracker.autorun(function () {
handleEvent(
collection.find({}, {sort: {$natural : 1}, limit: 1 }) // find last element in collection
);
});