I am fighting with the common need for redirecting a user to a login page if he is not logged-in (Meteor v0.8.0 on Windows 7).
There are several similar questions on
On Meteor 0.8.3 for me works:
Router.onBeforeAction(function () { if (_.include(['formLogin'], this.route.name)){ return; } if (!Meteor.userId()) { this.redirect('formLogin'); return; } });