tutorials

(★ 180)

The Meteor tutorials from meteor.com

File Explorer

  • .gitignore
  • .gitmodules
  • LICENSE
  • package-lock.json
  • package.js
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git rebase

View Details ▼

Reapply commits from one branch on top of another branch.
Commonly used to "move" an entire branch to another base, creating copies of the commits in the new location.

git rebase {{new_base_branch}}

Rebase the current branch on top of another specified branch:

git rebase {{[-i|--interactive]}} {{target_base_branch_or_commit_hash}}

Start an interactive rebase, which allows the commits to be reordered, omitted, combined, or modified:

git rebase --continue

Continue a rebase that was interrupted by a merge failure, after editing conflicting files:

🔍

git submodule

View Details ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

meteor

View Details ▼

Full-stack JavaScript platform for building web applications.

meteor

Run a meteor project from its root directory in development mode:

meteor create {{path/to/directory}}

Create a project under the given directory:

meteor list

Display the list of packages the project is currently using:

// repository documentation