Getting Started
Install prerequisites and run the CLI locally.
Historical note: older repo snapshots used the
.NETorchestrator. The active workflow is the Bun orchestrator inorchestrators/bun.
Prerequisites
- Bun 1.3.x
- Node.js 20.18+ for package/tool compatibility
- TypeScript compiler on PATH if you are working directly on framework packages
Steps
- Install dependencies and inspect the Bun CLI
# From repo root
bun install
bun run webstir -- --help
- Create a new project and start dev mode
bun run webstir -- init my-app
bun run webstir -- watch --workspace "$PWD/my-app"
- Open the printed dev server URL. Edit files under
src/**to see live reload.
Next
- Add a page — ../how-to/add-page.md
- Run tests — ../how-to/test.md
- Publish — ../how-to/publish.md