knox revised this gist . Go to revision
1 file changed, 16 insertions
Bun-3.sh(file created)
@@ -0,0 +1,16 @@ | |||
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 |
Newer
Older