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