diff options
author | 2023-07-24 14:40:03 -0700 | |
---|---|---|
committer | 2023-07-24 14:40:13 -0700 | |
commit | 31976f6af133ea8a73051d95d966952f25703e41 (patch) | |
tree | abe9dfc0f3291fd9ad11f75ca0fadd43e5277b28 | |
parent | 967ccb5d50b3ce163bb98fd125c56b039743de90 (diff) | |
download | bun-31976f6af133ea8a73051d95d966952f25703e41.tar.gz bun-31976f6af133ea8a73051d95d966952f25703e41.tar.zst bun-31976f6af133ea8a73051d95d966952f25703e41.zip |
Update install method order
-rw-r--r-- | docs/installation.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/installation.md b/docs/installation.md index 9fce0b511..a88fa4f6a 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -8,14 +8,14 @@ Bun ships as a single executable that can be installed a few different ways. {% codetabs %} -```bash#NPM -$ npm install -g bun # the last `npm` command you'll ever need -``` - ```bash#Native $ curl -fsSL https://bun.sh/install | bash # for macOS, Linux, and WSL ``` +```bash#NPM +$ npm install -g bun # the last `npm` command you'll ever need +``` + ```bash#Homebrew $ brew tap oven-sh/bun # for macOS and Linux $ brew install bun |