Bun
هذا المحتوى لا يتوفر بلغتك بعد.
Bun is an all-in-one toolkit for JavaScript and TypeScript apps. It ships as a single executable called bun
.
Bun ships as a single executable that can be installed a few different ways.
Installing
macOS and Linux
curl -fsSL https://bun.sh/install | bash # for macOS, Linux, and WSL# to install a specific versioncurl -fsSL https://bun.sh/install | bash -s "bun-v1.0.0"
npm install -g bun # the last `npm` command you'll ever need
brew install oven-sh/bun/bun # for macOS and Linux
docker pull oven/bundocker run --rm --init --ulimit memlock=-1:-1 oven/bun
proto install bun
Windows
Bun requires a minimum of Windows 10 version 1809
Bun provides a limited, experimental native build for Windows. It is recommended to use Bun within Windows Subsystem for Linux and follow the above instructions. To help catch bugs, the experimental build enables many debugging assertions, which will make the binary slower than what the stable version will be.
To install, paste this into a terminal:
# WARNING: No stability is guaranteed on the experimental Windows buildspowershell -c "irm bun.sh/install.ps1|iex"
# WARNING: No stability is guaranteed on the experimental Windows buildsscoop bucket add versionsscoop install bun-canary
Checking Installation
To check that Bun was installed successfully, open a new terminal window and run bun --version
.
$ bun --version1.x.y
To see the precise commit of oven-sh/bun that you’re using, run bun --revision
.
$ bun --revision1.x.y+b7982ac13189
If you’ve installed Bun but are seeing a command not found
error, you may have to manually add the installation directory (~/.bun/bin
) to your PATH
.
Upgrading
Once installed, the binary can upgrade itself.
bun upgrade
Homebrew users — To avoid conflicts with Homebrew, use brew upgrade bun instead.proto users - Use proto install bun --pin instead.
Bun automatically releases an (untested) canary build on every commit to main
. To upgrade to the latest canary build:
bun upgrade --canary
Uninstall
If you need to remove Bun from your system, use the following commands.
rm -rf ~/.bun # for macOS, Linux, and WSL
Remove-Item ~\.bun -Recurse
npm uninstall -g bun
brew uninstall bun
proto uninstall bun