What problem does it solve?
Reference for Bun runtime APIs used in this project. Use this skill whenever writing code that runs shell commands (Bun.$ or Bun.spawn), reading/writing files (Bun.file/Bun.write), running tests (bun test), or configuring the monorepo (workspaces, bunfig.toml). Prefer Bun APIs over Node.js equivalents — use Bun.$ instead of child_process, Bun.file() instead of fs.readFile, bun:test instead of jest.
Core Features & Use Cases
- Shell automation with Bun.$ and Bun.spawn for reliable command execution.
- File I/O with Bun.file and Bun.write for fast, Bun-backed reads and writes.
- Testing and monorepo tooling with bun test, bunfig.toml, and workspace configurations.
Quick Start
Install Bun and create a small script that prints a file's contents with Bun.file and runs a command with Bun.$.