kiln

(★ 27)

Baking FHIR from raw clay

파일 탐색기

  • .dockerignore
  • .env.example
  • .gitignore
  • .gitmodules
  • .prettierignore
  • .prettierrc.json
  • bun.lock
  • bunfig.toml
  • docker-compose.yml
  • DOCKER.md
  • Dockerfile
  • fly.toml
  • index.html
  • LICENSE
  • package.json
  • PROMPTING_GUIDE.md
  • README.md
  • tsconfig.json
  • viewer.html

# 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 add

설명 보기 ▼

Add and install new dependencies to the current project.

bun {{[a|add]}} {{package}}

Install a single package:

bun {{[a|add]}} {{package1 package2 ...}}

Install multiple packages:

bun {{[a|add]}} {{git_url}}

Install from a Git repository:

🔍

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 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 test

설명 보기 ▼

Run tests using Bun's built-in test runner.
It is a fast, Jest-compatible test runner that looks for `*.test.ts` (and similar) files.

bun test

Run all test files found in the project:

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

Run a specific test file or directory:

bun test --watch

Run tests in "watch" mode (re-runs automatically on file changes):

🔍

bun

설명 보기 ▼

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

bun init

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

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

단위 테스트 실행:

bun test

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

🔍

docker build

설명 보기 ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker run

설명 보기 ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

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:

🔍

git

설명 보기 ▼

분산 버전 관리 시스템.
`commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다.
더 많은 정보: <https://git-scm.com/docs/git>.

git init

하위 명령어 실행:

git clone {{https://example.com/repo.git}}

특정 레파지토리 위치에서 Git 하위 명령어 실행:

git status

주어진 설정으로 Git 하위 명령어 실행:

🔍

http

설명 보기 ▼

HTTPie: 테스트, 디버깅 및 일반적으로 API 및 HTTP 서버와 상호작용하도록 설계된 HTTP 클라이언트.
관련 항목: `xh`.
더 많은 정보: <https://httpie.io/docs/cli/usage>.

http {{https://example.com}}

간단한 GET 요청을 수행 (응답 헤더 및 콘텐츠 표시):

http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}

특정 출력 내용을 인쇄 (`H`: 요청 헤더, `B`: 요청 본문, `h`: 응답 헤더, `b`: 응답 본문, `m`: 응답 메타데이터):

http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}

요청을 보낼 때 HTTP 메소드를 지정하고 프록시를 사용하여 요청을 가로채기:

🔍

https

설명 보기 ▼

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

tldr http

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

🔍

java

설명 보기 ▼

Java 애플리케이션 실행기.
더 많은 정보: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/java.html>.

java {{classname}}

메인 메서드를 포함한 Java `.class` 파일을 클래스 이름만 사용하여 실행:

java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}

추가 서드파티 또는 사용자 정의 클래스를 사용하여 Java 프로그램 실행:

java -jar {{filename.jar}}

`.jar` 프로그램 실행:

🔍

netlify

설명 보기 ▼

Netlify 플랫폼에 사이트를 배포하고 지속적 배포를 설정.
더 많은 정보: <https://cli.netlify.com/>.

netlify login

Netlify 계정에 로그인:

netlify deploy

디렉토리의 내용을 Netlify에 배포:

netlify init

새 사이트 또는 기존 사이트에 대해 지속적 배포 설정:

🔍

npx

설명 보기 ▼

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

tldr npm exec

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

🔍

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 시작:

🔍

vercel

설명 보기 ▼

당신의 Vercel 프로젝트들을 관리하고 배포하세요.
더 많은 정보: <https://vercel.com/docs/cli>.

vercel

현재 디렉토리를 배포:

vercel --prod

현재 디렉토리를 프로덕션에 배포:

vercel {{path/to/project}}

특정 디렉토리를 배포:

// repository documentation