Installation
bext can be installed in multiple ways depending on your setup.
Quick Start (Recommended)
The fastest way to get started is with Bun:
bunx bext init my-app
cd my-app
bext dev
Package Managers
Bun (Recommended)
bun add bext
npm
npm install bext
From Source (Cargo)
If you want the standalone binary:
cargo install bext
Docker
docker pull ghcr.io/bext-dev/bext:latest
docker run -p 3000:3000 -v ./my-app:/app ghcr.io/bext-dev/bext:latest
Verify Installation
bext --version
You should see the current version printed. Now head to the Quickstart to build your first app.