AccountsCommon#onLoginFailure

Anywhere accountsClientOrServer.onLoginFailure(func) Source Register a callback to be called after a login attempt fails. Arguments func Function The callback to be called after the login has failed.

Meteor.user

Anywhere but publish functions Meteor.user() import { Meteor } from 'meteor/meteor' Source Get the current user record, or null if no user is logged in. A reactive data source.

template.lastNode

Client template.lastNode Source The last top-level DOM node in this template instance.

Blaze.renderWithData

Client Blaze.renderWithData(templateOrView, data, parentNode, [nextNode], [parentView]) import { Blaze } from 'meteor/blaze' Source Renders a template or View to DOM nodes with a data context. Otherwise identical to Blaze.render. Arguments templateOrView Blaze.Template or Blaze.View The template (e.g. Template.myTemplate) or View object to render. data Object or Function The data context to use, or a function returning a data context. If a function is provided, it will be reactiv

collection.findOne

Anywhere collection.findOne([selector], [options]) Source Finds the first document that matches the selector, as ordered by sort and skip options. Arguments selector Mongo Selector, Object ID, or String A query describing the documents to find Options sort Mongo Sort Specifier Sort order (default: natural order) skip Number Number of results to skip at the beginning fields Mongo Field Specifier Dictionary of fields to return or exclude. reactive Boolean (Client only

collection.deny

Server collection.deny(options) Source Override allow rules. Options insert, update, remove Function Functions that look at a proposed modification to the database and return true if it should be denied, even if an allow rule says otherwise. fetch Array of Strings Optional performance enhancement. Limits the fields that will be fetched from the database for inspection by your update and remove functions. transform Function Overrides transform on the Collection. Pass null to d

meteor lint

meteor lint Run through the whole build process for the app and run all linters the app uses. Outputs all build errors or linting warnings to the standard output.

meteor publish-for-arch

meteor publish-for-arch Publishes a build of an existing package version from a different architecture. Some packages contain code specific to an architecture. Running publish by itself, will upload the build to the architecture that you were using to publish. You need to run publish-for-arch from a different architecture to upload a different build. For example, let's say you published name:cool-binary-blob from a Mac. If you want people to be able to use cool-binary-blob from Linux, you shoul

onRendered

Client Template.myTemplate.onRendered import { Template } from 'meteor/templating' Source Register a function to be called when an instance of this template is inserted into the DOM. Arguments callback Function A function to be added as a callback.

Blaze.isTemplate

Client Blaze.isTemplate(value) import { Blaze } from 'meteor/blaze' Source Returns true if value is a template object like Template.myTemplate. Arguments value Any The value to test.