Template helpers in Meteor define values or functions that can be accessed from Meteor's logicless Spacebars templates.
In meteor, each template has a local dictionary of helpers that are made available to it:
Template.myTemplate.helpers({
foo: function () {
return Session.get("foo");
},
bar: 'baz'
});
To define helpers available globally throughout your app, use Template.RegisterHelper
.