Duxt

Build Full-Stack Dart Web Apps

The meta-framework for Jaspr with module-based architecture, file-based routing, and powerful scaffolding.

$ dart pub global activate duxt
v0.3.7 Latest
Features

Everything you need

Build production-ready Dart web applications with batteries included

Module-Based Architecture

Organize code by feature with pages, components, models & APIs

File-Based Routing

Pages auto-generate routes — no manual configuration needed

Built-in Tailwind CSS

Automatic Tailwind compilation with watch mode in development

Fullstack Template

New projects include a complete blog example with SQLite

State Management

DuxtState mixin handles loading, error & data states

Scaffold Generator

Full CRUD generation with a single command

Quick Start

Up and running in seconds

Terminal
# Install Duxt CLI
$ dart pub global activate duxt

# Create a new project
$ duxt create my-app
$ cd my-app

# Start dev server
$ duxt dev
Generators
# Generate a module
$ duxt g module posts

# Generate a page
$ duxt g page posts/[id]

# Scaffold full CRUD
$ duxt scaffold posts title:String