{
  "schema": "https://ai-atoms.com/schemas/skill-v1.json",
  "type": "skill",
  "id": "skill/bun-development",
  "version": "1.0.0",
  "name": "Bun Development",
  "description": "Modern JavaScript/TypeScript development with Bun runtime. Covers package management, bundling, testing, and migration from Node.js. Use when working with Bun, optimizing JS/TS development speed, o...",
  "system_prompt_fragment": "# ⚡ Bun Development\n\n> Fast, modern JavaScript/TypeScript development with the Bun runtime, inspired by [oven-sh/bun](https://github.com/oven-sh/bun).\n\n## When to Use This Skill\n\nUse this skill when:\n\n- Starting new JS/TS projects with Bun\n- Migrating from Node.js to Bun\n- Optimizing development speed\n- Using Bun's built-in tools (bundler, test runner)\n- Troubleshooting Bun-specific issues\n\n---\n\n## 1. Getting Started\n\n### 1.1 Installation\n\n```bash\n# macOS / Linux\ncurl -fsSL https://bun.sh/install | bash\n\n# Windows\npowershell -c \"irm bun.sh/install.ps1 | iex\"\n\n# Homebrew\nbrew tap oven-sh/bun\nbrew install bun\n\n# npm (if needed)\nnpm install -g bun\n\n# Upgrade\nbun upgrade\n```\n\n### 1.2 Why Bun?\n\n| Feature         | Bun            | Node.js                     |\n| :-------------- | :------------- | :-------------------------- |\n| Startup time    | ~25ms          | ~100ms+                     |\n| Package install | 10-100x faster | Baseline                    |\n| TypeScript      | Native         | Requires transpiler         |\n| JSX             | Native         | Requires transpiler         |\n| Test runner     | Built-in       | External (Jest, Vitest)     |\n| Bundler         | Built-in       | External (Webpack, esbuild) |\n\n---\n\n## 2. Project Setup\n\n### 2.1 Create New Project\n\n```bash\n# Initialize project\nbun init\n\n# Creates:\n# ├── package.json\n# ├── tsconfig.json\n# ├── index.ts\n# └── README.md\n\n# With specific template\nbun create <template> <project-name>\n\n# Examples\nbun create react my-app        # React app\nbun create next my-app         # Next.js app\nbun create vite my-app         # Vite app\nbun create elysia my-api       # Elysia API\n```\n\n### 2.2 package.json\n\n```json\n{\n  \"name\": \"my-bun-project\",\n  \"version\": \"1.0.0\",\n  \"module\": \"index.ts\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"dev\": \"bun run --watch index.ts\",\n    \"start\": \"bun run index.ts\",\n    \"test\": \"bun test\",\n    \"build\": \"bun build ./index.ts --outdir ./dist\",\n    \"lint\": \"bunx eslint .\"\n  },\n  \"devDependencies\": {\n    \"@types/bun\": \"latest\"\n  },\n  \"peerDependencies\": {\n    \"typescript\": \"^5.0.0\"\n  }\n}\n```\n\n### 2.3 tsconfig.json (Bun-optimized)\n\n```json\n{\n  \"compilerOptions\": {\n    \"lib\": [\"ESNext\"],\n    \"module\": \"esnext\",\n    \"target\": \"esnext\",\n    \"moduleResolution\": \"bundler\",\n    \"moduleDetection\": \"force\",\n    \"allowImportingTsExtensions\": true,\n    \"noEmit\": true,\n    \"composite\": true,\n    \"strict\": true,\n    \"downlevelIteration\": true,\n    \"skipLibCheck\": true,\n    \"jsx\": \"react-jsx\",\n    \"allowSyntheticDefaultImports\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"allowJs\": true,\n    \"types\": [\"bun-types\"]\n  }\n}\n```\n\n---\n\n## 3. Package Management\n\n### 3.1 Installing Packages\n\n```bash\n# Install from package.json\nbun install              # or 'bun i'\n\n# Add dependencies\nbun add express          # Regular dependency\nbun add -d typescript    # Dev dependency\nbun add -D @types/node   # Dev dependency (alias)\nbun add --optional pkg   # Optional dependency\n\n# From specific registry\nbun add lodash --registry https://registry.npmmirror.com\n\n# Install specific version\nbun add react@18.2.0\nbun add react@latest\nbun add react@next\n\n# From git\nbun add github:user/repo\nbun add git+https://github.com/user/repo.git\n```\n\n### 3.2 Removing & Updating\n\n```bash\n# Remove package\nbun remove lodash\n\n# Update packages\nbun update              # Update all\nbun update lodash       # Update specific\nbun update --latest     # Update to latest (ignore ranges)\n\n# Check outdated\nbun outdated\n```\n\n### 3.3 bunx (npx equivalent)\n\n```bash\n# Execute package binaries\nbunx prettier --write .\nbunx tsc --init\nbunx create-react-app my-app\n\n# With specific version\nbunx -p typescript@4.9 tsc --version\n\n# Run without installing\nbunx cowsay \"Hello from Bun!\"\n```\n\n### 3.4 Lockfile\n\n```bash\n# bun.lockb is a binary lockfile (faster parsing)\n# To generate text lockfile for debugging:\nbun install --yarn    # Creates yarn.lock\n\n# Trust existing lockfile\nbun install --frozen-lockfile\n```\n\n---\n\n## 4. Running Code\n\n### 4.1 Basic Execution\n\n```bash\n# Run TypeScript directly (no build step!)\nbun run index.ts\n\n# Run JavaScript\nbun run index.js\n\n# Run with arguments\nbun run server.ts --port 3000\n\n# Run package.json script\nbun run dev\nbun run build\n\n# Short form (for scripts)\nbun dev\nbun build\n```\n\n### 4.2 Watch Mode\n\n```bash\n# Auto-restart on file changes\nbun --watch run index.ts\n\n# With hot reloading\nbun --hot run server.ts\n```\n\n### 4.3 Environment Variables\n\n```typescript\n// .env file is loaded automatically!\n\n// Access environment variables\nconst apiKey = Bun.env.API_KEY;\nconst port = Bun.env.PORT ?? \"3000\";\n\n// Or use process.env (Node.js compatible)\nconst dbUrl = process.env.DATABASE_URL;\n```\n\n```bash\n# Run with specific env file\nbun --env-file=.env.production run index.ts\n```\n\n---\n\n## 5. Built-in APIs\n\n### 5.1 File System (Bun.file)\n\n```typescript\n// Read file\nconst file = Bun.file(\"./data.json\");\nconst text = await file.text();\nconst json = await file.json();\nconst buffer = await file.arrayBuffer();\n\n// File info\nconsole.log(file.size); // bytes\nconsole.log(file.type); // MIME type\n\n// Write file\nawait Bun.write(\"./output.txt\", \"Hello, Bun!\");\nawait Bun.write(\"./data.json\", JSON.stringify({ foo: \"bar\" }));\n\n// Stream large files\nconst reader = file.stream();\nfor await (const chunk of reader) {\n  console.log(chunk);\n}\n```\n\n### 5.2 HTTP Server (Bun.serve)\n\n```typescript\nconst server = Bun.serve({\n  port: 3000,\n\n  fetch(request) {\n    const url = new URL(request.url);\n\n    if (url.pathname === \"/\") {\n      return new Response(\"Hello World!\");\n    }\n\n    if (url.pathname === \"/api/users\") {\n      return Response.json([\n        { id: 1, name: \"Alice\" },\n        { id: 2, name: \"Bob\" },\n      ]);\n    }\n\n    return new Response(\"Not Found\", { status: 404 });\n  },\n\n  error(error) {\n    return new Response(`Error: ${error.message}`, { status: 500 });\n  },\n});\n\nconsole.log(`Server running at http://localhost:${server.port}`);\n```\n\n### 5.3 WebSocket Server\n\n```typescript\nconst server = Bun.serve({\n  port: 3000,\n\n  fetch(req, server) {\n    // Upgrade to WebSocket\n    if (server.upgrade(req)) {\n      return; // Upgraded\n    }\n    return new Response(\"Upgrade failed\", { status: 500 });\n  },\n\n  websocket: {\n    open(ws) {\n      console.log(\"Client connected\");\n      ws.send(\"Welcome!\");\n    },\n\n    message(ws, message) {\n      console.log(`Received: ${message}`);\n      ws.send(`Echo: ${message}`);\n    },\n\n    close(ws) {\n      console.log(\"Client disconnected\");\n    },\n  },\n});\n```\n\n### 5.4 SQLite (Bun.sql)\n\n```typescript\nimport { Database } from \"bun:sqlite\";\n\nconst db = new Database(\"mydb.sqlite\");\n\n// Create table\ndb.run(`\n  CREATE TABLE IF NOT EXISTS users (\n    id INTEGER PRIMARY KEY AUTOINCREMENT,\n    name TEXT NOT NULL,\n    email TEXT UNIQUE\n  )\n`);\n\n// Insert\nconst insert = db.prepare(\"INSERT INTO users (name, email) VALUES (?, ?)\");\ninsert.run(\"Alice\", \"alice@example.com\");\n\n// Query\nconst query = db.prepare(\"SELECT * FROM users WHERE name = ?\");\nconst user = query.get(\"Alice\");\nconsole.log(user); // { id: 1, name: \"Alice\", email: \"alice@example.com\" }\n\n// Query all\nconst allUsers = db.query(\"SELECT * FROM users\").all();\n```\n\n### 5.5 Password Hashing\n\n```typescript\n// Hash password\nconst password = \"super-secret\";\nconst hash = await Bun.password.hash(password);\n\n// Verify password\nconst isValid = await Bun.password.verify(password, hash);\nconsole.log(isValid); // true\n\n// With algorithm options\nconst bcryptHash = await Bun.password.hash(password, {\n  algorithm: \"bcrypt\",\n  cost: 12,\n});\n```\n\n---\n\n## 6. Testing\n\n### 6.1 Basic Tests\n\n```typescript\n// math.test.ts\nimport { describe, it, expect, beforeAll, afterAll } from \"bun:test\";\n\ndescribe(\"Math operations\", () => {\n  it(\"adds two numbers\", () => {\n    expect(1 + 1).toBe(2);\n  });\n\n  it(\"subtracts two numbers\", () => {\n    expect(5 - 3).toBe(2);\n  });\n});\n```\n\n### 6.2 Running Tests\n\n```bash\n# Run all tests\nbun test\n\n# Run specific file\nbun test math.test.ts\n\n# Run matching pattern\nbun test --grep \"adds\"\n\n# Watch mode\nbun test --watch\n\n# With coverage\nbun test --coverage\n\n# Timeout\nbun test --timeout 5000\n```\n\n### 6.3 Matchers\n\n```typescript\nimport { expect, test } from \"bun:test\";\n\ntest(\"matchers\", () => {\n  // Equality\n  expect(1).toBe(1);\n  expect({ a: 1 }).toEqual({ a: 1 });\n  expect([1, 2]).toContain(1);\n\n  // Comparisons\n  expect(10).toBeGreaterThan(5);\n  expect(5).toBeLessThanOrEqual(5);\n\n  // Truthiness\n  expect(true).toBeTruthy();\n  expect(null).toBeNull();\n  expect(undefined).toBeUndefined();\n\n  // Strings\n  expect(\"hello\").toMatch(/ell/);\n  expect(\"hello\").toContain(\"ell\");\n\n  // Arrays\n  expect([1, 2, 3]).toHaveLength(3);\n\n  // Exceptions\n  expect(() => {\n    throw new Error(\"fail\");\n  }).toThrow(\"fail\");\n\n  // Async\n  await expect(Promise.resolve(1)).resolves.toBe(1);\n  await expect(Promise.reject(\"err\")).rejects.toBe(\"err\");\n});\n```\n\n### 6.4 Mocking\n\n```typescript\nimport { mock, spyOn } from \"bun:test\";\n\n// Mock function\nconst mockFn = mock((x: number) => x * 2);\nmockFn(5);\nexpect(mockFn).toHaveBeenCalled();\nexpect(mockFn).toHaveBeenCalledWith(5);\nexpect(mockFn.mock.results[0].value).toBe(10);\n\n// Spy on method\nconst obj = {\n  method: () => \"original\",\n};\nconst spy = spyOn(obj, \"method\").mockReturnValue(\"mocked\");\nexpect(obj.method()).toBe(\"mocked\");\nexpect(spy).toHaveBeenCalled();\n```\n\n---\n\n## 7. Bundling\n\n### 7.1 Basic Build\n\n```bash\n# Bundle for production\nbun build ./src/index.ts --outdir ./dist\n\n# With options\nbun build ./src/index.ts \\\n  --outdir ./dist \\\n  --target browser \\\n  --minify \\\n  --sourcemap\n```\n\n### 7.2 Build API\n\n```typescript\nconst result = await Bun.build({\n  entrypoints: [\"./src/index.ts\"],\n  outdir: \"./dist\",\n  target: \"browser\", // or \"bun\", \"node\"\n  minify: true,\n  sourcemap: \"external\",\n  splitting: true,\n  format: \"esm\",\n\n  // External packages (not bundled)\n  external: [\"react\", \"react-dom\"],\n\n  // Define globals\n  define: {\n    \"process.env.NODE_ENV\": JSON.stringify(\"production\"),\n  },\n\n  // Naming\n  naming: {\n    entry: \"[name].[hash].js\",\n    chunk: \"chunks/[name].[hash].js\",\n    asset: \"assets/[name].[hash][ext]\",\n  },\n});\n\nif (!result.success) {\n  console.error(result.logs);\n}\n```\n\n### 7.3 Compile to Executable\n\n```bash\n# Create standalone executable\nbun build ./src/cli.ts --compile --outfile myapp\n\n# Cross-compile\nbun build ./src/cli.ts --compile --target=bun-linux-x64 --outfile myapp-linux\nbun build ./src/cli.ts --compile --target=bun-darwin-arm64 --outfile myapp-mac\n\n# With embedded assets\nbun build ./src/cli.ts --compile --outfile myapp --embed ./assets\n```\n\n---\n\n## 8. Migration from Node.js\n\n### 8.1 Compatibility\n\n```typescript\n// Most Node.js APIs work out of the box\nimport fs from \"fs\";\nimport path from \"path\";\nimport crypto from \"crypto\";\n\n// process is global\nconsole.log(process.cwd());\nconsole.log(process.env.HOME);\n\n// Buffer is global\nconst buf = Buffer.from(\"hello\");\n\n// __dirname and __filename work\nconsole.log(__dirname);\nconsole.log(__filename);\n```\n\n### 8.2 Common Migration Steps\n\n```bash\n# 1. Install Bun\ncurl -fsSL https://bun.sh/install | bash\n\n# 2. Replace package manager\nrm -rf node_modules package-lock.json\nbun install\n\n# 3. Update scripts in package.json\n# \"start\": \"node index.js\" → \"start\": \"bun run index.ts\"\n# \"test\": \"jest\" → \"test\": \"bun test\"\n\n# 4. Add Bun types\nbun add -d @types/bun\n```\n\n### 8.3 Differences from Node.js\n\n```typescript\n// ❌ Node.js specific (may not work)\nrequire(\"module\")             // Use import instead\nrequire.resolve(\"pkg\")        // Use import.meta.resolve\n__non_webpack_require__       // Not supported\n\n// ✅ Bun equivalents\nimport pkg from \"pkg\";\nconst resolved = import.meta.resolve(\"pkg\");\nBun.resolveSync(\"pkg\", process.cwd());\n\n// ❌ These globals differ\nprocess.hrtime()              // Use Bun.nanoseconds()\nsetImmediate()                // Use queueMicrotask()\n\n// ✅ Bun-specific features\nconst file = Bun.file(\"./data.txt\");  // Fast file API\nBun.serve({ port: 3000, fetch: ... }); // Fast HTTP server\nBun.password.hash(password);           // Built-in hashing\n```\n\n---\n\n## 9. Performance Tips\n\n### 9.1 Use Bun-native APIs\n\n```typescript\n// Slow (Node.js compat)\nimport fs from \"fs/promises\";\nconst content = await fs.readFile(\"./data.txt\", \"utf-8\");\n\n// Fast (Bun-native)\nconst file = Bun.file(\"./data.txt\");\nconst content = await file.text();\n```\n\n### 9.2 Use Bun.serve for HTTP\n\n```typescript\n// Don't: Express/Fastify (overhead)\nimport express from \"express\";\nconst app = express();\n\n// Do: Bun.serve (native, 4-10x faster)\nBun.serve({\n  fetch(req) {\n    return new Response(\"Hello!\");\n  },\n});\n\n// Or use Elysia (Bun-optimized framework)\nimport { Elysia } from \"elysia\";\nnew Elysia().get(\"/\", () => \"Hello!\").listen(3000);\n```\n\n### 9.3 Bundle for Production\n\n```bash\n# Always bundle and minify for production\nbun build ./src/index.ts --outdir ./dist --minify --target node\n\n# Then run the bundle\nbun run ./dist/index.js\n```\n\n---\n\n## Quick Reference\n\n| Task         | Command                                    |\n| :----------- | :----------------------------------------- |\n| Init project | `bun init`                                 |\n| Install deps | `bun install`                              |\n| Add package  | `bun add <pkg>`                            |\n| Run script   | `bun run <script>`                         |\n| Run file     | `bun run file.ts`                          |\n| Watch mode   | `bun --watch run file.ts`                  |\n| Run tests    | `bun test`                                 |\n| Build        | `bun build ./src/index.ts --outdir ./dist` |\n| Execute pkg  | `bunx <pkg>`                               |\n\n---\n\n## Resources\n\n- [Bun Documentation](https://bun.sh/docs)\n- [Bun GitHub](https://github.com/oven-sh/bun)\n- [Elysia Framework](https://elysiajs.com/)\n- [Bun Discord](https://bun.sh/discord)",
  "applicable_domains": [
    "other"
  ],
  "category": "other",
  "invocation": [
    "/bun-development"
  ],
  "authored_by": "claudeskills.in community",
  "source_url": "https://claudeskills.in/skill/bun-development",
  "provenance": {
    "source": "claudeskills.in",
    "source_url": "https://claudeskills.in/skill/bun-development",
    "license": "unknown",
    "imported_at": "2026-09-03",
    "notes": "Aggregated by claudeskills.in from community GitHub lists."
  },
  "tags": [
    "claudeskills",
    "other"
  ],
  "lifecycle": "draft"
}