What problem does it solve? Developers adopting or debugging the Bun runtime often lack clear guidance on its runtime APIs, package manager, bundler, test runner, and how to migrate from Node without breaking existing toolchains. ## Core Features & Use Cases - Runtime and API Guidance: Explains Bun's Node-compatible runtime, native APIs like Bun.file and Bun.serve, and compatibility gaps to check. - Package Management and Tooling: Covers bun install, lockfile handling (bun.lock vs bun.lockb), bun run scripts, and bun test with its Jest-like API. - Node Migration and Deployment: Provides steps for requested Node-to-Bun migrations and Bun configuration on platforms like Vercel. - Use Case: When asked to migrate a Node project to Bun, follow the reference to replace npm install with bun install, swap node script.js for bun run script.js, and verify tests with bun test. ## Quick Start Ask the assistant to review your project and migrate its Node scripts and tests to the Bun runtime using this reference.