From 4eb2856143cab5c48bf8d80f2f5e35aede2f9e2a Mon Sep 17 00:00:00 2001 From: Yaroslav Lapin Date: Tue, 6 Jan 2026 20:14:38 -0700 Subject: [PATCH] Add bun installation method to INSTALLING.md (#930) --- docs/INSTALLING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/INSTALLING.md b/docs/INSTALLING.md index 3b77049e..dc1c3e1e 100644 --- a/docs/INSTALLING.md +++ b/docs/INSTALLING.md @@ -61,6 +61,7 @@ The installer will: |--------|----------|---------|---------------|-------| | **Homebrew** | macOS/Linux users | `brew upgrade bd` | Homebrew | Recommended. Handles everything automatically | | **npm** | JS/Node.js projects | `npm update -g @beads/bd` | Node.js | Convenient if npm is your ecosystem | +| **bun** | JS/Bun.js projects | `bun install -g --trust @beads/bd` | Bun.js | Convenient if bun is your ecosystem | | **Install script** | Quick setup, CI/CD | Re-run script | curl, bash | Good for automation and one-liners | | **go install** | Go developers | Re-run command | Go 1.24+ | Builds from source, always latest | | **From source** | Contributors, custom builds | `git pull && go build` | Go, git | Full control, can modify code |