bun
Installation
SKILL.md
Bun - 极速 JavaScript 运行时
使用 Bun 的一体化工具包构建和运行 JavaScript/TypeScript 应用。Bun 集运行时、打包器、测试运行器和包管理器于一身,提供显著的性能提升和 Node.js 兼容性。
快速开始
# 安装 Bun(macOS、Linux、WSL)
curl -fsSL https://bun.sh/install | bash
# Windows
powershell -c "irm bun.sh/install.ps1 | iex"
# 创建新项目
bun init
# 直接运行 TypeScript(无需编译步骤!)
bun run index.ts