pledgestack
A production-grade full-stack React framework that unifies the best of Next.js, Remix, Astro, and Vite into one platform. App-directory routing, RSC streaming, SSR/SSG/ISR, edge deployment, and instant HMR powered by PledgePack, a Rust+Zig bundler for dramatically faster builds. One framework, every advantage.
pledgestack 최신버젼 다운로드
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo build
설명 보기 ▼
cargo build
Compile a local package and all of its dependencies.
cargo {{[b|build]}}
Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
cargo {{[b|build]}} {{[-r|--release]}}
Build artifacts in release mode, with optimizations:
cargo {{[b|build]}} --locked
Require that `Cargo.lock` is up to date:
cargo clippy
설명 보기 ▼
cargo clippy
A collection of lints to catch common mistakes and improve your Rust code.
cargo clippy
Run checks over the code in the current directory:
cargo clippy --locked
Require that `Cargo.lock` is up to date:
cargo clippy --workspace
Run checks on all packages in the workspace:
cargo fmt
설명 보기 ▼
cargo fmt
Run `rustfmt` on all source files in a Rust project.
See also: `rustfmt`.
cargo fmt
Format all source files:
cargo fmt --check
Check for formatting errors without writing to the files:
cargo fmt -- {{rustfmt_args}}
Pass arguments to each `rustfmt` call:
cargo
설명 보기 ▼
cargo
Rust 프로젝트 및 모듈 종속성(크레이트)을 관리.
`build`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://doc.rust-lang.org/stable/cargo/>.
cargo search {{search_string}}
크레이트 검색:
cargo install {{crate_name}}
바이너리 크레이트 설치:
cargo install --list
설치된 바이너리 크레이트 나열:
npm install
설명 보기 ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
pnpm
설명 보기 ▼
pnpm
빠르고, 디스크 공간 효율적인 Node.js용 패키지 관리자.
Node.js 프로젝트 및 해당 모듈 의존성 관리.
더 많은 정보: <https://pnpm.io/pnpm-cli>.
pnpm init
`package.json` 파일 생성:
pnpm {{[i|install]}}
`package.json`에 의존성으로 나열된 모든 패키지를 다운로드:
pnpm add {{module_name}}@{{version}}
특정 버전의 패키지를 다운로드하여 `package.json`의 의존성 목록에 추가:
vue
설명 보기 ▼
vue
Vue.js를 위한 다목적 CLI.
`build`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://cli.vuejs.org/guide/>.
vue create {{project_name}}
대화형으로 새 Vue 프로젝트 생성:
vue ui
웹 UI로 새 프로젝트 생성:
lib
설명 보기 ▼
lib
Microsoft Library Manager(라이브러리 관리 도구)로, 오브젝트 파일로부터 정적 라이브러리를 생성하고 관리.
더 많은 정보: <https://learn.microsoft.com/cpp/build/reference/lib-reference>.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
오브젝트 파일로부터 정적 라이브러리 생성:
lib /LIST {{path\to\library.lib}}
라이브러리의 내용 목록 표시:
lib {{path\to\library.lib}} {{path\to\file.obj}}
기존 라이브러리에 오브젝트 파일 추가:
replace
설명 보기 ▼
replace
파일을 대체합니다.
관련 항목: `robocopy`, `move`, `del`.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/replace>.
replace {{path\to\file_or_directory}} {{path\to\destination_directory}}
대상 파일을 소스 디렉토리의 파일로 대체:
replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /a
기존 파일을 바꾸는 대신 대상 디렉토리에 파일을 추가:
replace {{path\to\file_or_directory}} {{path\to\destination_directory}} /p
여러 파일을 대상 디렉토리에 복사하고 대체하기 전에 대화형으로 확인:
