Bun runtime, package management, HTTP server, and testing conventions. Use when working with bun, bun test, bun build, Bun.serve, or building JavaScript/TypeScript projects with the Bun runtime.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Bun runtime, package management, HTTP server, and testing conventions. Use when working with bun, bun test, bun build, Bun.serve, or building JavaScript/TypeScript projects with the Bun runtime.
Bun
Setup
bun init - create project
bun install - faster than npm/yarn
bun run dev - run dev server
bun test - Jest/Vitest compatible
bun build - production bundling
API Development
Native Bun.serve() for HTTP server
Bun.file() for file operations
.ts and .js natively - no transpiler
JSON: await req.json(), Response.json(data)
SQLite built-in: import { Database } from "bun:sqlite"