What problem does it solve? Choosing between Bun and Node and migrating an existing JavaScript or TypeScript project involves uncertainty about compatibility, lockfiles, scripts, and deployment configuration. This Skill provides concrete guidance on when to use Bun, how to migrate from Node, and how to run, test, and deploy with Bun. ## Core Features & Use Cases - Runtime and Toolchain Guidance: Explains Bun as a Node-compatible runtime, fast package manager, built-in bundler, and Jest-like test runner. - Node Migration Notes: Maps common commands such as npm install to bun install, node script.js to bun run, and npx to bun x, including lockfile handling with bun.lock. - Use Case: When starting a new TypeScript project or deploying to Vercel, use this Skill to configure bun install --frozen-lockfile, bun run build, and the Bun runtime setting for reproducible deployments. ## Quick Start Ask the assistant to help migrate your Node project to Bun, including install commands, test setup, and Vercel deployment configuration.