docs
The Meteor API documentation.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git rm
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
