Meteor.status

Client Meteor.status() import { Meteor } from 'meteor/meteor' Source Get the current connection status. A reactive data source.

Session.setDefault

Client Session.setDefault(key, value) import { Session } from 'meteor/session' Source Set a variable in the session if it hasn't been set before. Otherwise works exactly the same as Session.set. Arguments key String The key to set, eg, selectedItem value EJSON-able Object or undefined The new value for key

audit-argument-checks

audit-argument-checks This package causes Meteor to require that all arguments passed to methods and publish functions are checked. Any method that does not pass each one of its arguments to check will throw an error, which will be logged on the server and which will appear to the client as a 500 Internal server error. This is a simple way to help ensure that your app has complete check coverage. Methods and publish functions that do not need to validate their arguments can simply run check(ar

modules

modules Though Meteor 1.2 introduced support for many new ECMAScript 2015 features, one of the most notable omissions was ES2015 import and export syntax. Meteor 1.3 fills that gap with a fully standards-compliant module system that works on both the client and the server, solves multiple long-standing problems for Meteor applications (such as controlling file load order), and yet maintains full backwards compatibility with existing Meteor code. This document explains the usage and key feature

computation.stop

Client computation.stop() Source Prevents this computation from rerunning.