Framework Guides¶
Litestar Vite supports a wide range of frontend runtimes without forcing a single app shape.
UI Frameworks¶
Vite-first React apps with type generation and optional Inertia integration.
Composition API, SSR entrypoints, and current Vite-aligned Vue structure.
Lean Svelte apps with owned templates and current runtime wiring.
Standalone Angular via Vite/Analog plus Angular CLI coverage where you need it.
Server-rendered flows with small JavaScript surfaces and fast iteration.
Application Frameworks¶
React, Vue, and Svelte server-driven SPA patterns with a dedicated guide and stable v2 protocol support.
Proxy Nuxt through Litestar in development while preserving a clean API boundary.
Keep SvelteKit’s app structure while sharing type generation and proxy integration.
Use Astro’s static or server output while Litestar owns backend routes and APIs.
Quick Scaffold¶
litestar assets init --template react
litestar assets init --template vue
litestar assets init --template svelte
litestar assets init --template angular
litestar assets init --template angular-cli
litestar assets init --template htmx
litestar assets init --template react-inertia
litestar assets init --template vue-inertia
litestar assets init --template svelte-inertia
# Template-mode examples: react-inertia-jinja / vue-inertia-jinja
litestar assets init --template astro
litestar assets init --template nuxt
litestar assets init --template sveltekit
Real-World Example¶
Production-oriented reference application using Litestar, Vite, and React with authentication, team workflows, and type-safe frontend contracts.