Bun — среда выполнения JavaScript и TypeScript

★ 7.9 · web-development

bun-runtime is a Claude Code skill that covers Bun as an all-in-one JavaScript and TypeScript toolchain: a JavaScriptCore-based runtime written in Zig, package manager, bundler, and test runner. It explains when to choose Bun over Node.js — new JS/TS projects, scripts where install and run speed matters, Vercel deployments — and when Node remains the better fit, such as legacy tooling or packages with known Bun compatibility issues. The skill includes commands like `bun install`, `bun run`, `bun test`, and `bun x`; Bun API examples (`Bun.file`, `Bun.serve`); lockfile handling (`bun.lock` vs `bun.lockb`); and reproducible Vercel deploys using `--frozen-lockfile`. It's aimed at developers migrating from Node, starting a greenfield project, or configuring Bun on a deployment platform.