template.firstNode

Client template.firstNode Source The first top-level DOM node in this template instance.

this.userId

Anywhere this.userId Source The id of the user that made this method call, or null if no user was logged in.

meteor login / logout

meteor login / logout Log in and out of your account using Meteor's authentication system. You can pass METEOR_SESSION_FILE=token.json before meteor login to generate a login session token so you don't have to share your login credentials with third-party service providers. You can revoke the token at any time from your accounts settings page. Once you have your account you can log in and log out from the command line, and check your username with meteor whoami.

Tracker.flush

Client Tracker.flush() import { Tracker } from 'meteor/tracker' Source Process all reactive updates immediately and ensure that all invalidated computations are rerun.

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.

Meteor.disconnect

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

Tracker.Dependency

Tracker.Dependency A Dependency represents an atomic unit of reactive data that a computation might depend on. Reactive data sources such as Session or Minimongo internally create different Dependency objects for different pieces of data, each of which may be depended on by multiple computations. When the data changes, the computations are invalidated. Dependencies don't store data, they just track the set of computations to invalidate if something changes. Typically, a data value will be acco

App.info

App.info(options) Set your mobile app's core configuration information. Options id, version, name, description, author, email, website String Each of the options correspond to a key in the app's core configuration as described in the Cordova documentation.

Build system

The Meteor build system is the actual command line tool that you get when you install Meteor. You run it by typing the meteor command in your terminal, possibly followed by a set of arguments. Read the docs about the command line tool or type meteor help in your terminal to learn about all of the commands. What does it do? The Meteor build tool is what compiles, runs, deploys, and publishes all of your Meteor apps and packages. It’s Meteor’s built-in solution to the problems also solved by tool

AccountsCommon#user

Anywhere but publish functions accountsClientOrServer.user() Source Get the current user record, or null if no user is logged in. A reactive data source.