case

(★ 156)

No description available.

File Explorer

  • .gitignore
  • .mcp.json
  • .oxfmtrc.json
  • .oxlintrc.json
  • AGENTS.md
  • bun.lock
  • bunfig.toml
  • CLAUDE.md
  • config.schema.json
  • CONTEXT.md
  • improvements.md
  • package.json
  • pnpm-lock.yaml
  • projects.schema.json
  • README.md
  • sgconfig.yml
  • tsconfig.json
  • vitest.config.ts

# Use via CDN

jsDelivr

jsDelivr 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.

🔍

bun install

View Details ▼

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:

🔍

bun link

View Details ▼

Register a local package as linkable or link a registered package into a project.
See also: `bun unlink`.

bun link

Link the current package globally:

bun link {{package_name}}

Link a package locally to a project:

bun link --cwd {{path/to/package}}

Link a package in a specific directory:

🔍

bun run

View Details ▼

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 test

View Details ▼

Run tests using Bun's built-in test runner.
It is a fast, Jest-compatible test runner that looks for `*.test.ts` (and similar) files.

bun test

Run all test files found in the project:

bun test {{path/to/file.test.ts}}

Run a specific test file or directory:

bun test --watch

Run tests in "watch" mode (re-runs automatically on file changes):

🔍

standard

View Details ▼

The JavaScript Standard Style tool for linting and fixing JavaScript code.

standard

Lint all JavaScript source files in the current directory:

standard {{path/to/file1 path/to/file2 ...}}

Lint specific JavaScript file(s):

standard --fix

Apply automatic fixes during linting:

// repository documentation