codex-plusplus

(★ 3,754)

Codex++ tweak system for the Codex desktop app

파일 탐색기

  • .gitignore
  • CHANGELOG.md
  • CONTRIBUTING.md
  • install.ps1
  • install.sh
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • SECURITY.md
  • tsconfig.base.json
  • update.ps1
  • update.sh

# 설치 가이드

node
사전 준비물
  • Node.js >=16.0.0
  • OpenAI Codex Desktop App

설치 및 실행 절차

npm install

프로젝트의 종속성을 설치합니다.

npm run build

프로젝트를 빌드합니다.

node packages/installer/dist/cli.js install

Codex++ 패치를 적용하고 런타임을 설치합니다.

핵심 명령어

npm run build

소스 코드를 컴파일하고 빌드 아티팩트를 생성합니다.

npm test

테스트 스위트를 실행합니다.

codexplusplus install

Codex를 패치하고 런타임을 설치합니다.

codexplusplus status

설치된 버전과 패치 상태를 확인합니다.

codexplusplus repair

앱 업데이트 또는 손상된 설치 후 패치를 다시 적용합니다.

codexplusplus safe-mode

모든 트윅을 삭제하지 않고 일시적으로 비활성화합니다.

설치 후 Codex를 정상적으로 실행하면 Settings에서 Codex++ 섹션을 확인할 수 있습니다.

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

🔍

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+ 필요):

🔍

npm run

설명 보기 ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

npm test

설명 보기 ▼

This command is an alias of `npm run test`.

tldr npm run

View documentation for the original command:

// repository documentation