https://github.com/oven-sh/homebrew-bun
Official Homebrew tap for Bun
https://github.com/oven-sh/homebrew-bun
bun homebrew javascript
Last synced: 3 months ago
JSON representation
Official Homebrew tap for Bun
- Host: GitHub
- URL: https://github.com/oven-sh/homebrew-bun
- Owner: oven-sh
- License: mit
- Created: 2022-10-20T17:23:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-31T16:32:03.000Z (3 months ago)
- Last Synced: 2025-04-03T02:07:22.024Z (3 months ago)
- Topics: bun, homebrew, javascript
- Language: Ruby
- Homepage: https://bun.sh
- Size: 164 KB
- Stars: 123
- Watchers: 11
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# homebrew-bun
This is the official [Homebrew](https://brew.sh/) tap for [Bun](https://bun.sh/). You can use it to install Bun on MacOS and Linux using Homebrew.
## Install
To install Bun with Homebrew, aka. `brew`, run the following commands:
```bash
brew tap oven-sh/bun
brew install bun
```If you want to install a specific release, you can include the version in the command. You can also view the list of releases [here](https://github.com/oven-sh/bun/releases).
```bash
brew install [email protected]
```## Upgrade
To upgrade, it is recommended that you run the `brew upgrade` command. However, you can also run `bun upgrade` as well.
```bash
brew upgrade bun
```## Uninstall
If you want to uninstall Bun, run the following commands:
```bash
brew uninstall bun
brew untap oven-sh/bun
```