So I\'m rather new to the meteor framework and JavaScript in general, but I\'m working on a little project using the framework to try and bring myself up to scratch. Basically I
I don't know if the way you're doing it is the most appropriate but personally do the following on the client side to detect if a user logged in:
Tracker.autorun(function(){ if(Meteor.userId()){ //do your stuff } });