Последняя активность 1732735777

Версия a3cd91efd31cce049622bebb4e819788874524bf

Bun-3.sh Исходник
1# with install script (recommended)
2curl -fsSL https://bun.sh/install | bash
3
4# on windows
5powershell -c "irm bun.sh/install.ps1 | iex"
6
7# with npm
8npm install -g bun
9
10# with Homebrew
11brew tap oven-sh/bun
12brew install bun
13
14# with Docker
15docker pull oven/bun
16docker run --rm --init --ulimit memlock=-1:-1 oven/bun