How about using the built-in Accounts.config (options) http://docs.meteor.com/#accounts_config
Accounts.config({ loginExpirationInDays: null })
After logging in, it will never expire until the user logs out again using Meteor.logout ();
However, keep in mind that since the token is stored in localstorage, it is sometimes cleared by iOS or Android
Green source share