What problem does it solve?
This Skill helps you set up, run, test, and migrate modern JavaScript and TypeScript projects using Bun efficiently, including the practical differences from Node.js.
Core Features & Use Cases
- Bun project setup & configuration: Create projects with Bun and use Bun-friendly TypeScript settings (e.g., bundler module resolution, fast iteration).
- Dependency management & tooling: Use bun, bun add/remove/update, bunx for one-off commands, and understand bun.lockb vs text lockfiles.
- Run, test, and build workflows: Execute TypeScript directly, leverage watch/hot mode, run bun test with common options, and bundle with Bun.build.
- Migration from Node.js: Identify Node-to-Bun changes for imports/globals and recommended Bun equivalents for performance.
Quick Start
Tell me: "Using the bun-development skill, help me create a new Bun + TypeScript project, set up scripts for dev/test/build, and show how to run the first test."