For a Tauri starter showing a Rust and web frontend setup, the strongest matches are tauri-apps/create-tauri-app (create-tauri-app is the official scaffolding CLI for Tauri, generating), farm-fe/farm (Farm is a Rust-based web build tool and dev) and dioxuslabs/dioxus (Dioxus is a cross-platform Rust framework for building desktop). Each is ranked by relevance to your query, popularity and recent activity.
Boilerplate projects integrating Rust backends with modern web frontends for cross-platform desktop application development.
create-tauri-app is the official scaffolding CLI for Tauri, generating a complete starter project with Rust backend and a Vite-based web frontend, including build configuration and hot reload support — exactly what you need to jump into a Tauri desktop app.
Farm is a Rust-based web build tool and development server that compiles JavaScript, TypeScript, CSS, HTML, and static assets into optimized bundles. It uses a module-graph-based bundling approach with persistent module-level caching, enabling near-instant builds and sub-20ms hot module replacement during development. The tool processes assets based on file extensions, handling CSS, Sass, Less, PostCSS, HTML, and images as first-class modules without requiring JavaScript transformation. Farm distinguishes itself through its Vite-compatible plugin system, accepting Vite, Rollup, and Unplugin p
Farm is a Rust-based web build tool and dev server, not a Tauri starter template — while it could be used as the frontend build tool in a Tauri project, it doesn't provide the Tauri application structure or example you're looking for.
Dioxus is a cross-platform development framework designed for building native desktop, mobile, and web applications from a single codebase. It utilizes a declarative component model and macro-powered syntax to define reusable interface elements, which are then rendered as native widgets or web elements. At its core, the framework employs a signal-based reactivity system that tracks state dependencies to trigger granular updates, ensuring efficient interface performance without re-rendering the entire application tree. The framework distinguishes itself through a unified full-stack runtime tha
Dioxus is a cross-platform Rust framework for building desktop, mobile, and web apps, but it is not a Tauri starter template or example — it uses its own rendering system rather than Tauri's architecture.