bun-development
Fast, modern JavaScript/TypeScript development with the Bun runtime, inspired by [oven-sh/bun](https://github.com/oven-sh/bun).
npx skills add sickn33/agentic-awesome-skills --skill bun-development --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# ⚡ Bun Development > Fast, modern JavaScript/TypeScript development with the Bun runtime, inspired by [oven-sh/bun](https://github.com/oven-sh/bun). ## When to Use This Skill Use this skill when: - Starting new JS/TS projects with Bun - Migrating from Node.js to Bun - Optimizing development speed - Using Bun's built-in tools (bundler, test runner) - Troubleshooting Bun-specific issues --- ## 1. Getting Started ### 1.1 Installation ```bash # macOS / Linux brew install oven-sh/bun/bun # Alternative: download the official installer, inspect it, then execute it tmpdir="$(mktemp -d)" trap 'rm -rf "$tmpdir"' EXIT curl -fsSLo "$tmpdir/bun-install.sh" https://bun.sh/install cat "$tmpdir/bun-install.sh" # review the full installer before executing bash "$tmpdir/bun-install.sh" # Windows powershell -NoProfile -Command "Invoke-WebRequest https://bun.sh/install.ps1 -OutFile $env:TEMP\\bun-install.ps1; Get-Content $env:TEMP\\bun-install.ps1 -TotalCount 120; powershell -ExecutionPolicy Bypass -File $env:TEMP\\bun-install.ps1" # Homebrew brew tap oven-sh/bun brew install bun # npm (if needed) npm install -g bun # Upgrade bun upgrade ``` ### 1.2 Why Bun? | Feature | Bun | Node.js | | :-----------
- When to Use This Skill
- 1. Getting Started
- 1.1 Installation
- 1.2 Why Bun?
- 2. Project Setup
- 2.1 Create New Project
- 2.2 package.json
- 2.3 tsconfig.json (Bun-optimized)
- 3. Package Management
- 3.1 Installing Packages
- 3.2 Removing & Updating
- 3.3 bunx (npx equivalent)
- 3.4 Lockfile
- 4. Running Code
macOS / Linux brew install oven-sh/bun/bun trap 'rm -rf "$tmpdir"' EXIT curl -fsSLo "$tmpdir/bun-install.sh" https://bun.sh/install cat "$tmpdir/bun-install.sh" # review the full installer before executing bash "$tmpdir/bun-install.sh" Windows Homebrew brew tap oven-sh/bun brew install bun
What does the bun-development skill do?
Fast, modern JavaScript/TypeScript development with the Bun runtime, inspired by [oven-sh/bun](https://github.com/oven-sh/bun).
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill bun-development --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.