I\'m trying to display the number of users in my footer and I would like this number in real time. I think the proper way is to create a publication in the server and to sub
try this
Template.footer.usercount = function () { return Meteor.users.find().count(); }; {{usercount}}