spacebadgers
Fast and clean SVG badges
파일 탐색기
- dependencies.yml
- spacebadgers.yml
- utils.yml
- worker.yml
- FUNDING.yml
- badge.rs
- cssgg_icons.rs
- eva_icons_fill.rs
- eva_icons_outline.rs
- feather_icons.rs
- icon_set.rs
- spacebadgers__badge__tests__colored_badge.snap
- spacebadgers__badge__tests__colored_scaled_badge.snap
- spacebadgers__badge__tests__default_badge.snap
- spacebadgers__badge__tests__default_scaled_badge.snap
- spacebadgers__badge__tests__icon_badge.snap
- spacebadgers__badge__tests__rounded_badge.snap
- badge.rs
- badge_builder.rs
- color_palette.rs
- icons.rs
- lib.rs
- util.rs
- width.rs
- .gitkeep
- cssgg
- eva
- feather
- build.rs
- Cargo.lock
- Cargo.toml
- README.md
- main.rs
- Cargo.toml
- minify.rs
- lib.rs
- minify.rs
- Cargo.toml
- _headers
- apple-touch-icon.png
- logo.png
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- IconShelf.tsx
- IconUrlBanner.tsx
- page.tsx
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- route.ts
- favicon.ico
- globals.css
- layout.tsx
- logo.png
- opengraph-image.png
- page.tsx
- BadgeEndpoint.tsx
- index.ts
- Path.tsx
- Section.tsx
- StaticBadge.tsx
- ThemeStrip.tsx
- Badge.ts
- Codeberg.ts
- Crates.ts
- GitHub.ts
- Npm.ts
- PyPI.ts
- .eslintrc.json
- .gitignore
- .oxfmtrc.json
- .oxlintrc.json
- .yarnrc.yml
- cloudflare-env.d.ts
- eslint.config.mjs
- next.config.js
- open-next.config.ts
- package.json
- postcss.config.js
- README.md
- tailwind.config.js
- tsconfig.json
- wrangler.jsonc
- yarn.lock
- icon.rs
- lib.rs
- utils.rs
- .gitignore
- .yarnrc.yml
- Cargo.toml
- package.json
- wrangler.toml
- yarn.lock
- verdana110.json
- verdana110.js
- .all-contributorsrc
- .editorconfig
- .gitignore
- .gitmodules
- Cargo.lock
- Cargo.toml
- deny.toml
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cargo test
설명 보기 ▼
cargo test
Execute the unit and integration tests of a Rust package.
cargo {{[t|test]}} {{test_name}}
Only run tests containing a specific string in their names:
cargo {{[t|test]}} -- --test-threads {{count}}
Set the number of simultaneous running test cases:
cargo {{[t|test]}} {{[-r|--release]}}
Test artifacts in release mode, with optimizations:
git submodule
설명 보기 ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
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`:
npm run
설명 보기 ▼
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:
yarn
설명 보기 ▼
yarn
JavaScript 및 Node.js 패키지 대체 관리자.
더 많은 정보: <https://yarnpkg.com/cli>.
yarn global add {{module_name}}
전역적으로 모듈 설치:
yarn install
`package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다):
yarn add {{module_name}}@{{version}}
모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가):
