What problem does it solve? Developers working with Bun often default to Node.js patterns and miss Bun's native capabilities, leading to unnecessary dependencies and slower workflows. This Skill provides comprehensive guidance on Bun's CLI commands, native APIs, testing, and database integration so you write idiomatic Bun code. ## Core Features & Use Cases - CLI Command Reference: Maps common Node.js/npm operations to Bun equivalents like bun install, bunx, bun --watch, and bun test. - Native API Patterns: Covers Bun.serve for HTTP/WebSocket servers, Bun.file for file I/O, Bun.password for Argon2id hashing, and Bun.$ for cross-platform shell scripting. - Testing & Databases: Shows bun:test usage with mocking, plus Drizzle ORM with PostgreSQL and built-in bun:sqlite. - Use Case: When building a TypeScript API server, use this Skill to scaffold a Bun.serve route handler with WebSocket support, hash passwords natively, and run tests with bun test --coverage without installing extra packages. ## Quick Start Ask the AI to create a Bun HTTP server with a health check route and a WebSocket echo endpoint using Bun.serve.