I have
var Schemas = {};
Meteor.isClient && Template.registerHelper(\"Schemas\", Schemas);
Schemas.Person = new SimpleSchema({
fullName: {
ty
Session variables are global and can be accessed in different files/functions easily. Session.setPersistent is used to set the variable name persistently across all files. One might restrict from using session variables when their app is too big as they don't get deleted (hence possible memory leaks) and might give error in the console (if undefined or so). Link to the docs : https://docs.meteor.com/api/session.html