Getting Started
Getting Started with Dex
Welcome! Dex is a Bun-first framework for building web applications with file-based routing, zero-config defaults, and a focus on simplicity.
What You'll Learn
- What Dex is and why you'd use it
- How to scaffold your first app in 5 minutes
- How to develop, build, and deploy
Prerequisites
- Bun (v1.1+) installed on your machine
- Basic knowledge of TypeScript and React
Quick Start
# Scaffold a new Dex project
bunx dex create my-app
# Enter the project directory
cd my-app
# Start the dev server
bun run devYour app will be running at http://localhost:7990.
Next Steps
- What is Dex? — Understand the philosophy and architecture
- Your First App — Step-by-step tutorial building a real app
- How Dex Works — Mental model for routing, layouts, and builds