basically I have:
Meteor.startup(function () {
"use strict";
Meteor.publish("uTree", function () {
return utree.find({});
});
});
so the question is should I wait or not for the system is up and running to start publishing? is any advantage of using Meteor.startup() in here?