What problem does it solve? JavaScript development typically requires juggling separate tools for running code, installing packages, bundling, and testing. This Skill consolidates those workflows into Bun, a single runtime that replaces Node.js, npm, and standalone bundlers while natively supporting TypeScript and JSX. ## Core Features & Use Cases - Unified Toolchain: Run scripts with bun run, install dependencies with bun install, bundle with bun build, and test with bun test — all from one tool. - Built-in HTTP Server: Create high-performance REST APIs and WebSocket servers using Bun.serve() without external frameworks. - Native TypeScript/JSX Support: Transpile on-the-fly with zero configuration, plus automatic .env file loading. - Use Case: Scaffold a full-stack TypeScript API with bun init, add routes via Bun.serve, write Jest-compatible tests, and ship a standalone executable with bun build --compile. ## Quick Start Use the Bun skill to initialize a new TypeScript project, start an HTTP server on port 3000, and run its test suite.