docs
The Meteor API documentation.
File Explorer
- api-box.html
- theme-colors.less
- convert-toc-to-redirects.js
- old-toc.js
- .gitkeep
- publish.js
- jsdoc-conf.json
- jsdoc.sh
- alternate-windows-installation.md
- appcache.md
- breaking-changes-1.2.md
- build-machines.md
- building-cross-platform-packages.md
- editing-tools-for-windows-development.md
- file-change-watcher-efficiency.md
- oplog-observe-driver.md
- package-server-api.md
- README.md
- tracker-manual.md
- api-box.js
- changelog.js
- dl.js
- nameToId.js
- old-redirects.js
- parseTagOptions.js
- accounts-multi.md
- accounts.md
- assets.md
- blaze.md
- check.md
- collections.md
- connections.md
- core.md
- ejson.md
- email.md
- environment.md
- http.md
- methods.md
- mobile-config.md
- packagejs.md
- passwords.md
- pubsub.md
- reactive-dict.md
- reactive-var.md
- session.md
- templates.md
- timers.md
- tracker.md
- openssl-suport-table.png
- accounts-ui.md
- appcache.md
- audit-argument-checks.md
- autoupdate.md
- browser-policy.md
- bundle-visualizer.md
- coffeescript.md
- dynamic-import.md
- ecmascript.md
- fetch.md
- hot-module-replacement.md
- less.md
- logging.md
- markdown.md
- modules.md
- oauth-encryption.md
- random.md
- server-render.md
- spacebars.md
- underscore.md
- url.md
- webapp.md
- changelog.md
- commandline.md
- environment-variables.md
- expired-certificate.md
- index.md
- install.md
- windows.md
- meteor
- .gitignore
- .gitmodules
- .nvmrc
- _config.yml
- code
- Contributing.md
- netlify.toml
- package-lock.json
- package.json
- README.md
- renovate.json
# Use via CDN
jsDelivrjsDelivr 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 rm
View Details ▼
git rm
Remove files from repository index and local filesystem.
git rm {{path/to/file}}
Remove file from repository index and filesystem:
git rm -r {{path/to/directory}}
Remove directory [r]ecursively:
git rm --cached {{path/to/file}}
Remove file from repository index but keep it untouched locally:
git submodule
View Details ▼
git submodule
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:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm start
View Details ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
