bun-package-manager

Solid

Bun package manager commands (install, add, remove, update), workspaces, lockfiles, npm/yarn/pnpm migration. Use for dependency management with Bun.

Data & Documents 162 stars 25 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
74
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Bun Package Manager Bun's package manager is a dramatically faster replacement for npm, yarn, and pnpm. Up to **25x faster** than npm install. ## Quick Start ```bash # Install all dependencies bun install # Add packages bun add react react-dom bun add -D typescript @types/react # Remove packages bun remove lodash # Update packages bun update # Run package binaries bunx create-next-app ``` ## Core Commands | Command | Description | |---------|-------------| | `bun install` | Install all dependencies | | `bun add <pkg>` | Add dependency | | `bun add -D <pkg>` | Add dev dependency | | `bun add -O <pkg>` | Add optional dependency | | `bun add --peer <pkg>` | Add peer dependency | | `bun remove <pkg>` | Remove dependency | | `bun update [pkg]` | Update dependencies | | `bunx <pkg>` | Run package binary | | `bun pm cache rm` | Clear cache | ## Installation Flags ```bash # Production mode (no devDependencies) bun install --production # Frozen lockfile (CI/CD) bun install --frozen-lockfile bun ci # shorthand # Dry run bun install --dry-run # Verbose/Silent bun install --verbose bun install --silent # Force reinstall bun install --force # Global packages bun install -g cowsay ``` ## Lockfile Bun uses `bun.lock` (text-based since v1.2): ```bash # Generate text lockfile bun install --save-text-lockfile # Upgrade from binary bun.lockb bun install --save-text-lockfile --frozen-lockfile --lockfile-only rm bun.lockb ``` ## Workspaces (Monorepos) ```json { "name": ...

Details

Author
secondsky
Repository
secondsky/claude-skills
Created
6 months ago
Last Updated
2 weeks ago
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category