this.connection

Server this.connection Source Access inside a method invocation. The connection that this method was received on. null if the method is not associated with a connection, eg. a server initiated method call.

Email.send

Server Email.send(options) import { Email } from 'meteor/email' Source Send an email. Throws an Error on failure to contact mail server or if mail server returns an error. All fields should match RFC5322 specification. If the MAIL_URL environment variable is set, actually sends the email. Otherwise, prints the contents of the email to standard out. Note that this package is based on mailcomposer version 0.1.15, so make sure to refer to the documentation for that version if using the atta

markdown

markdown This package lets you use Markdown in your templates. It's easy: just put your markdown inside {{#markdown}} ... {{/markdown}} tags. You can still use all of the usual Meteor template features inside a Markdown block, such as {{#each}}, and you still get reactivity. Example: {{#markdown}}I am using __markdown__.{{/markdown}} outputs <p>I am using <strong>markdown</strong>.</p>

Meteor.disconnect

Client Meteor.disconnect() import { Meteor } from 'meteor/meteor' Source Disconnect the client from the server.

template.autorun

Client template.autorun(runFunc) Source A version of Tracker.autorun that is stopped when the template is destroyed. Arguments runFunc Function The function to run. It receives one argument: a Tracker.Computation object.

appcache

appcache The appcache package stores the static parts of a Meteor application (the client side Javascript, HTML, CSS, and images) in the browser's application cache. To enable caching simply add the appcache package to your project. Once a user has visited a Meteor application for the first time and the application has been cached, on subsequent visits the web page loads faster because the browser can load the application out of the cache without contacting the server first. Hot code pushes ar

Meteor.isCordova

Anywhere Meteor.isCordova import { Meteor } from 'meteor/meteor' Source Boolean variable. True if running in a Cordova mobile environment.

reactiveVar.set

Client reactiveVar.set(newValue) Source Sets the current value of the ReactiveVar, invalidating the Computations that called get if newValue is different from the old value. Arguments newValue Any

Accounts.emailTemplates

Server Accounts.emailTemplates import { Accounts } from 'meteor/accounts-base' Source Options to customize emails sent from the Accounts system.

{{&gt; Template.dynamic}}

Templates {{> Template.dynamic template=template [data=data] }} Source Choose a template to include dynamically, by name. Arguments template String The name of the template to include. data Object Optional. The data context in which to include the template.