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.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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"