spacebadgers
Fast and clean SVG badges
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo test
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
