Migrate existing Node.js/npm projects to Bun
/plugin marketplace add secondsky/claude-skills/plugin install secondsky-bun-plugins-bun@secondsky/claude-skills# Migrate to Bun Migrate an existing Node.js project to use Bun as runtime and package manager. ## Migration Steps ### 1. Analyze Current Project Check for: - Current package manager (package-lock.json, yarn.lock, pnpm-lock.yaml) - Node.js version requirements - Native dependencies - Scripts that use Node-specific features - Test framework (Jest, Mocha, Vitest) ### 2. Package Manager Migration ### 3. Update Scripts Replace in package.json: | Before | After | |--------|-------| | `node script.js` | `bun script.js` | | `ts-node script.ts` | `bun script.ts` | | `npx command` | `bunx ...