pixels
Disposable Linux containers for AI coding agents, with extensible backends
파일 탐색기
- coverage.yml
- coverage.yml
- release.yml
- test.yml
- FUNDING.yml
- base.go
- checkpoint.go
- console.go
- console_test.go
- create.go
- destroy.go
- exec.go
- list.go
- mcp.go
- network.go
- resolve.go
- resolve_test.go
- root.go
- sessions.go
- start.go
- status.go
- stop.go
- config.go
- config_test.go
- defaults.go
- egress.go
- egress_test.go
- presets.toml
- dev.sh
- node.sh
- python.sh
- buildbase.go
- buildbase_test.go
- builder.go
- builder_test.go
- buildlock.go
- buildlock_test.go
- cascade.go
- cascade_test.go
- defaults.go
- defaults_test.go
- doc.go
- locks.go
- locks_test.go
- log.go
- log_test.go
- names.go
- names_test.go
- pidfile.go
- pidfile_test.go
- reaper.go
- reaper_test.go
- server.go
- server_test.go
- state.go
- state_test.go
- tools.go
- tools_test.go
- provision.go
- provision_test.go
- retry.go
- retry_test.go
- enable-egress.sh
- mise.toml
- pixels-profile.sh
- rc-local.sh
- scripts.go
- setup-devtools.sh
- setup-egress.sh
- console_unix.go
- console_windows.go
- ssh.go
- ssh_test.go
- backend.go
- config.go
- exec.go
- files.go
- incus.go
- network.go
- provision.go
- signal_unix.go
- signal_windows.go
- backend.go
- backend_test.go
- client.go
- client_test.go
- config.go
- config_test.go
- exec.go
- files.go
- files_test.go
- network.go
- network_test.go
- resolve.go
- resolve_test.go
- ssh.go
- truenas.go
- user.go
- errors.go
- errors_test.go
- registry.go
- registry_test.go
- sandbox.go
- .gitignore
- .goreleaser.yml
- CLAUDE.md
- cliff.toml
- go.mod
- go.sum
- LICENSE
- main.go
- mise.toml
- README.md
- SECURITY.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
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:
go install
설명 보기 ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
mise
설명 보기 ▼
mise
다양한 패키지의 버전을 관리.
더 많은 정보: <https://mise.jdx.dev/cli/>.
mise plugins list-all
사용 가능한 모든 플러그인 나열:
mise plugins add {{name}}
플러그인 설치:
mise ls-remote {{name}}
설치 가능한 런타임 버전 나열:
node
설명 보기 ▼
node
서버 측 JavaScript 플랫폼 (Node.js).
더 많은 정보: <https://nodejs.org/docs/latest/api/cli.html#options>.
node {{path/to/file}}
JavaScript 파일 실행:
node
REPL(대화형 셸) 시작:
node --watch {{path/to/file}}
지정된 파일을 실행하고 가져온 파일이 변경될 때 프로세스를 재시작 (Node.js 버전 18.11+ 필요):
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
