meteor show

meteor show Shows more information about a specific package or release: name, summary, the usernames of its maintainers, and, if specified, its homepage and git URL.

Meteor.clearInterval

Anywhere Meteor.clearInterval(id) import { Meteor } from 'meteor/meteor' Source Cancel a repeating function call scheduled by Meteor.setInterval. Arguments id Number The handle returned by Meteor.setInterval

meteor build

meteor build Package this project up for deployment. The output is a directory with several build artifacts: a tarball that includes everything necessary to run the application server (see the README in the tarball for details) an unsigned apk bundle and a project source if Android is targetted as a mobile platform a directory with an Xcode project source if iOS is targetted as a mobile platform You can use the application server bundle to host a Meteor application on your own server, instead

Tracker.active

Client Tracker.active import { Tracker } from 'meteor/tracker' Source True if there is a current computation, meaning that dependencies on reactive data sources will be tracked and potentially cause the current computation to be rerun.

Blaze

After reading this guide, you’ll know: How to use the Spacebars language to define templates rendered by the Blaze engine. Best practices for writing reusable components in Blaze. How the Blaze rendering engine works under the hood and some advanced techniques for using it. How to test Blaze templates. Blaze is Meteor’s built-in reactive rendering library. Usually, templates are written in Spacebars, a variant of Handlebars designed to take advantage of Tracker, Meteor’s reactivity system. Th

Template instances

Template instances A template instance object represents an occurrence of a template in the document. It can be used to access the DOM and it can be assigned properties that persist as the template is reactively updated. Template instance objects are found as the value of this in the onCreated, onRendered, and onDestroyed template callbacks, and as an argument to event handlers. You can access the current template instance from helpers using Template.instance(). In addition to the properties a

Introduction

What is Meteor? Meteor is a full-stack JavaScript platform for developing modern web and mobile applications. Meteor includes a key set of technologies for building connected-client reactive applications, a build tool, and a curated set of packages from the Node.js and general JavaScript community. Meteor allows you to develop in one language, JavaScript, in all environments: application server, web browser, and mobile device. Meteor uses data on the wire, meaning the server sends data, not

webapp

webapp The webapp package is what lets your Meteor app serve content to a web browser. It is included in the meteor-base set of packages that is automatically added when you run meteor create. You can easily build a Meteor app without it - for example if you wanted to make a command-line tool that still used the Meteor package system and DDP. This package also allows you to add handlers for HTTP requests. This lets other services access your app's data through an HTTP API, allowing it to easil

template.findAll

Client template.findAll(selector) Source Find all elements matching selector in this template instance. Arguments selector String The CSS selector to match, scoped to the template contents.

{{currentUser}}

{{ currentUser }} Source Calls Meteor.user(). Use {{#if currentUser}} to check whether the user is logged in.