Skip to content

Commit f54014e

Browse files
ochafikclaude
andcommitted
docs: add Bun installation instructions per platform
Documents that Bun is required for development, with platform-specific install commands in collapsible sections. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ca8de57 commit f54014e

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

CONTRIBUTING.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,51 @@
22

33
We welcome contributions to the MCP Apps SDK! This document outlines the process for contributing to the project.
44

5+
## Prerequisites
6+
7+
Development requires [Bun](https://bun.sh) (used for building and testing).
8+
9+
<details>
10+
<summary><strong>macOS / Linux</strong></summary>
11+
12+
```bash
13+
curl -fsSL https://bun.sh/install | bash
14+
```
15+
16+
</details>
17+
18+
<details>
19+
<summary><strong>Windows (native)</strong></summary>
20+
21+
```powershell
22+
powershell -c "irm bun.sh/install.ps1 | iex"
23+
```
24+
25+
</details>
26+
27+
<details>
28+
<summary><strong>Windows (WSL)</strong></summary>
29+
30+
```bash
31+
curl -fsSL https://bun.sh/install | bash
32+
```
33+
34+
</details>
35+
36+
<details>
37+
<summary><strong>Windows ARM64</strong></summary>
38+
39+
Native ARM64 binaries aren't available yet. Use x64 build via emulation:
40+
41+
```powershell
42+
# Download x64-baseline build (works via emulation)
43+
powershell -c "irm bun.sh/install.ps1 | iex"
44+
```
45+
46+
Or use WSL (recommended for ARM64).
47+
48+
</details>
49+
550
## Getting Started
651

752
1. Fork the repository

0 commit comments

Comments
 (0)