Restrict routes in Meteor.js to privileged users
问题 How do you apply the security principles for routing? That has to be done client side. Does it mean there is no secure way to restrict some routes to specific users. I know about filters in Meteor.Router, but those are defined on the client side. This is a question asked in this comment by curious2learn. 回答1: Unfortunately, you're right, currently there's no secure way to restrict routes to specific users. In the current version of Meteor, the whole client code is sent to all users at once.