Bub
Bun is a fast JavaScript all-in-one toolkit
Install
brew install oven-sh/bun/bun
# Upgrading bun itself
bun upgradeAdd ~/.bun/bin to your $PATH in the ~/.zshrc file
# verify
bun --version
bun --helpUninstall
brew uninstall bun
rm -rf ~/.bun # for macOS, Linux, and WSLScaffold
To scaffold a new project:
mkdir quickstart
cd quickstart
bun initTo install the TypeScript definitions for Bun's built-in APIs, install bun-types.
In the repo root, set .gitattributes and git config as documented here
Utils
package manager
Last updated
Was this helpful?