emacs-backbone
Emacs framework for deterministic, dependency-ordered configuration management inspired by NixOS principles.
파일 탐색기
- ci.yml
- backbone-env
- build-generated-js
- emacs-backbone.mjs
- backbone-early-init.el
- backbone.el
- compose.el
- helper.el
- macro-config-unit.el
- macro-package.el
- package-manager.el
- emacs.gleam
- emacs_backbone.gleam
- jsonrpc.gleam
- jsonrpc_ffi.mjs
- monadic.gleam
- package_tracker.gleam
- package_tracker_ffi.mjs
- pkg.gleam
- pkg_macro.gleam
- pkg_utils.gleam
- resolver.gleam
- unit.gleam
- unit_executor.gleam
- unit_macro.gleam
- unit_state.gleam
- unit_utils.gleam
- test-jsonrpc.el
- emacs_backbone_test.gleam
- pkg_test.gleam
- resolver_test.gleam
- unit_macro_test.gleam
- unit_utils_test.gleam
- .gitignore
- AGENTS.md
- CLAUDE.md
- early-init.el
- gleam.toml
- init.el
- manifest.toml
- package.json
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
bun run
설명 보기 ▼
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
설명 보기 ▼
bun
JavaScript 런타임 및 툴킷.
번들러, 테스트 러너 및 패키지 관리자가 포함.
더 많은 정보: <https://bun.com/docs>.
bun init
JavaScript 파일 또는 `package.json` 스크립트 실행:
bun run {{path/to/file|script_name}}
단위 테스트 실행:
bun test
`package.json`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:
emacs
설명 보기 ▼
emacs
확장 가능, 사용자 정의 가능, 자체 문서화가 되는 실시간 디스플레이 편집기.
관련 항목: `emacsclient`.
더 많은 정보: <https://www.gnu.org/software/emacs>.
emacs {{path/to/file}}
Emacs 시작 및 파일 열기:
emacs +{{line_number}} {{path/to/file}}
지정된 줄 번호에서 파일 열기:
emacs --script {{path/to/file.el}}
Emacs Lisp 파일을 스크립트로 실행:
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:
gleam
설명 보기 ▼
gleam
"확장 가능한 타입 안전 시스템을 구축하기 위한 친숙한 언어!"인 Gleam용 컴파일러, 빌드 도구, 패키지 관리자 및 코드 포맷터.
더 많은 정보: <https://gleam.run/writing-gleam/command-line-reference/>.
gleam new {{project_name}}
새로운 gleam 프로젝트 생성:
gleam run
gleam 프로젝트 빌드 및 실행:
gleam build
프로젝트 빌드:
host
설명 보기 ▼
host
도메인 네임 서버 조회.
관련 항목: `dig`, `resolvectl`, `nslookup`.
더 많은 정보: <https://manned.org/host>.
host {{domain}}
도메인의 A, AAAA 및 MX 레코드 조회:
host -t {{field}} {{domain}}
도메인의 필드 (CNAME, TXT, ...) 조회:
host {{ip_address}}
IP 역방향 조회:
tag
설명 보기 ▼
tag
Edit tags on Mac OS X files (10.9 Mavericks and above).
tag {{[-a|--add]}} {{tag_name1,tag_name2,...}} {{path/to/file}}
Add tags to a file:
tag {{[-r|--remove]}} {{tag_name}} {{path/to/file}}
Remove a tag:
tag {{[-r|--remove]}} \* {{path/to/file}}
Remove all tags from a file:
