cli
Manage and configure Akamai from the Command Line.
파일 탐색기
- checks.yml
- access_nix.go
- access_windows.go
- firstrun.go
- firstrun_noinstall.go
- run.go
- run_test.go
- main.go
- cli.go
- cli_test.go
- app_help.tmpl
- command_help.tmpl
- simplified_command_help.tmpl
- subcommand_help.tmpl
- help.go
- help_command.go
- help_command_test.go
- help_test.go
- autocomplete.go
- autocomplete_test.go
- color.go
- package-list.json
- cli.json
- cli.json
- akamai-echo-python
- cli.json
- cli.json
- cli.json
- cli.json
- cli.json
- cli.json
- sample_packages.json
- test_packages.json
- example-binary.go
- command.go
- command_config.go
- command_config_test.go
- command_install.go
- command_install_test.go
- command_list.go
- command_list_test.go
- command_search.go
- command_search_test.go
- command_subcommand.go
- command_subcommand_test.go
- command_test.go
- command_uninstall.go
- command_uninstall_test.go
- command_update.go
- command_update_test.go
- command_upgrade.go
- command_upgrade_noop.go
- command_upgrade_test.go
- constants.go
- helpers_test.go
- mocks.go
- package_reader.go
- package_reader_test.go
- subcommands.go
- subcommands_test.go
- upgrade.go
- upgrade_common.go
- config
- config
- test
- config
- config.go
- config_test.go
- mock.go
- mock.go
- repository.go
- context.go
- handler.go
- handler_test.go
- log.go
- log_test.go
- command_executor.go
- command_executor_test.go
- golang.go
- golang_test.go
- javascript.go
- javascript_test.go
- mock.go
- package.go
- package_test.go
- php.go
- php_test.go
- python.go
- python_test.go
- ruby.go
- ruby_test.go
- mock.go
- spinner.go
- spinner_test.go
- terminal.go
- terminal_test.go
- files.go
- util.go
- util_test.go
- version.go
- version_test.go
- semtag
- .gitignore
- .golangci.yaml
- akamai-echo-uninstall
- build.sh
- CHANGELOG.md
- go.mod
- go.sum
- LICENSE
- Makefile
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
brew install
설명 보기 ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
docker run
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
go build
설명 보기 ▼
go build
Compile Go sources.
go build {{path/to/main.go}}
Compile a 'package main' file (output will be the filename without extension):
go build -o {{path/to/binary}} {{path/to/source.go}}
Compile, specifying the output filename:
go build -o {{path/to/binary}} {{path/to/package}}
Compile a package:
npm
설명 보기 ▼
npm
JavaScript 및 Node.js 패키지 관리자.
Node.js 프로젝트 및 모듈 의존성을 관리합니다.
더 많은 정보: <https://docs.npmjs.com/cli/npm/>.
npm init {{[-y|--yes]}}
기본값으로 `package.json` 파일 생성 (`--yes`를 생략하면 대화식으로 진행):
npm {{[i|install]}}
package.json에 의존성으로 나열된 모든 패키지를 다운로드:
npm {{[i|install]}} {{package_name}}@{{version}}
특정 버전의 패키지를 다운로드하고 `package.json`의 의존성 목록에 추가:
pip
설명 보기 ▼
pip
Python 패키지 관리자.
`install`와 같은 일부 하위 명령어는 별도의 사용 문서가 존재.
더 많은 정보: <https://pip.pypa.io/en/stable/cli/pip/>.
pip install {{package}}
패키지 설치 (더 많은 설치 예시는 `pip install`를 참고):
pip install --user {{package}}
시스템 전체 기본 위치 대신 사용자 디렉터리에 패키지 설치:
pip install {{[-U|--upgrade]}} {{package}}
패키지 업그레이드:
venv
설명 보기 ▼
venv
Python에서 가벼운 가상 환경을 생성.
더 많은 정보: <https://docs.python.org/library/venv.html>.
python -m venv {{path/to/virtual_environment}}
Python 가상 환경 생성:
{{[.|source]}} {{path/to/virtual_environment}}/bin/activate
가상 환경 활성화 (Linux 및 macOS):
{{path\to\virtual_environment}}\Scripts\activate.bat
가상 환경 활성화 (Windows):
yarn
설명 보기 ▼
yarn
JavaScript 및 Node.js 패키지 대체 관리자.
더 많은 정보: <https://yarnpkg.com/cli>.
yarn global add {{module_name}}
전역적으로 모듈 설치:
yarn install
`package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다):
yarn add {{module_name}}@{{version}}
모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가):
