Collections and Schemas
  • References/JavaScript/Meteor/Guide: Data

After reading this guide, you’ll know: The different types of MongoDB collections in Meteor, and how to use them. How to define

2025-01-10 15:47:30
meteor mongo
  • References/JavaScript/Meteor/Command line

meteor mongo Open a MongoDB shell on your local development database, so that you can view or manipulate it directly.

2025-01-10 15:47:30
Event maps
  • References/JavaScript/Meteor/Templates

Event Maps An event map is an object where the properties specify a set of events to handle, and the values are the handlers for those events

2025-01-10 15:47:30
AccountsServer#onCreateUser
  • References/JavaScript/Meteor/Accounts (multi-server)

Server accountsServer.onCreateUser(func)

2025-01-10 15:47:30
meteor login / logout
  • References/JavaScript/Meteor/Command line

meteor login / logout Log in and out of your account using Meteor's authentication system. You can pass

2025-01-10 15:47:30
Accounts.onResetPasswordLink
  • References/JavaScript/Meteor/Passwords

Client Accounts.onResetPasswordLink import { Accounts } from

2025-01-10 15:47:30
meteor deploy
  • References/JavaScript/Meteor/Command line

meteor deploy site Deploy the project in your current directory to Galaxy. You can deploy in debug mode

2025-01-10 15:47:30
Meteor.call
  • References/JavaScript/Meteor/Methods

Anywhere Meteor.call(name, [arg1, arg2...], [asyncCallback]) import

2025-01-10 15:47:30
Sort specifiers
  • References/JavaScript/Meteor/Collections

Sort Specifiers Sorts may be specified using your choice of several syntaxes: //

2025-01-10 15:47:30
this.setUserId
  • References/JavaScript/Meteor/Methods

Server this.setUserId(userId)

2025-01-10 15:47:30