coding-buddy

(★ 446)

Keep Your Claude Code Buddy Forever — permanent coding companion that survives every update

파일 탐색기

  • .gitattributes
  • .gitignore
  • bun.lock
  • CONTRIBUTING.md
  • LICENSE
  • package.json
  • README.md
  • SECURITY.md
  • TESTING.md
  • tsconfig.json

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

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:

🔍

bun install

설명 보기 ▼

Install JavaScript dependencies for a project from `package.json`.

bun {{[i|install]}}

Install all dependencies listed in `package.json`:

bun {{[i|install]}} {{package_name}}@{{version}}

Install a single package (this is an alias for `bun add`):

bun {{[i|install]}} {{[-g|--global]}} {{package_name}}

Install a package globally:

🔍

bun link

설명 보기 ▼

Register a local package as linkable or link a registered package into a project.
See also: `bun unlink`.

bun link

Link the current package globally:

bun link {{package_name}}

Link a package locally to a project:

bun link --cwd {{path/to/package}}

Link a package in a specific directory:

🔍

bun run

설명 보기 ▼

Execute a JavaScript/TypeScript file, or a script from `package.json`.

bun run {{script_name}}

Run a script defined in `package.json`:

bun run {{path/to/file.ts}}

Run a JavaScript or TypeScript file directly:

bun run --watch {{path/to/file.ts}}

Run a file in "watch" mode (restarts automatically when the file changes):

🔍

bun

설명 보기 ▼

JavaScript 런타임 및 툴킷.
번들러, 테스트 러너 및 패키지 관리자가 포함.
더 많은 정보: <https://bun.com/docs>.

bun init

JavaScript 파일 또는 `package.json` 스크립트 실행:

bun run {{path/to/file|script_name}}

단위 테스트 실행:

bun test

`package.json`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:

🔍

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:

🔍

npx

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

🔍

stty

설명 보기 ▼

터미널 장치 인터페이스의 옵션을 설정하거자 조회.
관련 항목: `tput`.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/stty-invocation.html>.

stty size

현재 터미널 크기를 표시:

stty {{[-a|--all]}}

현재 터미널의 모든 설정을 표시:

stty {{rows|cols}} {{count}}

행 또는 열의 개수를 설정:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

// repository documentation