docs: add bun and pnpm as installation options

This commit is contained in:
Ed Zynda
2026-03-19 17:02:09 +03:00
parent fd61db3e12
commit 68518a2bdb
2 changed files with 15 additions and 3 deletions
+5 -1
View File
@@ -29,10 +29,14 @@ A powerful, extensible AI coding agent CLI with multi-provider support, built-in
## Installation
### Using npm (recommended)
### Using npm / bun / pnpm
```bash
npm install -g @mark3labs/kit
# or
bun install -g @mark3labs/kit
# or
pnpm install -g @mark3labs/kit
```
### Using Go
+10 -2
View File
@@ -1,16 +1,24 @@
---
title: Installation
description: Install Kit using npm, Go, or build from source.
description: Install Kit using npm, bun, pnpm, Go, or build from source.
---
# Installation
## Using npm (recommended)
## Using npm / bun / pnpm
```bash
npm install -g @mark3labs/kit
```
```bash
bun install -g @mark3labs/kit
```
```bash
pnpm install -g @mark3labs/kit
```
## Using Go
```bash