Dioxus: Fullstack App Framework for Web, Desktop, and Mobile
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
Dioxus is a powerful fullstack application framework built in Rust, enabling developers to create performant applications for web, desktop, and mobile from a single codebase. It offers zero-config setup, integrated hot-reloading, and signals-based state management, making cross-platform development efficient and enjoyable. With Dioxus, you can build truly cross-platform experiences with ease and efficiency.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Dioxus is an innovative fullstack application framework written in Rust, designed to empower developers to build robust and performant applications across various platforms. With over 31,000 stars on GitHub, it allows you to target web, desktop, and mobile environments using a single, unified codebase, streamlining development and ensuring consistency. It emphasizes a zero-config setup, integrated hot-reloading for rapid iteration, and an ergonomic signals-based state management system, providing a modern and efficient development experience.
Installation
To get started with Dioxus, you'll typically install its command-line interface (CLI). The recommended way to install the most recent binary CLI is using cargo binstall:
cargo binstall dioxus-cli@0.7.0 --force
If the binstall version is out-of-date, you can install it directly from the Git repository:
cargo install --git https://github.com/DioxusLabs/dioxus dioxus-cli --locked
Make sure you have Rust and Cargo installed on your system.
Examples
Dioxus uses a declarative UI syntax similar to React. Here's a simple counter application example:
fn app() -> Element {
let mut count = use_signal(|| 0);
rsx! {
h1 { "High-Five counter: {count}" }
button { onclick: move |_| count += 1, "Up high!" }
button { onclick: move |_| count -= 1, "Down low!" }
}
}
You can run examples with the Dioxus CLI. For instance, to run a web example, you might use:
dx serve --example <example_name> --platform web -- --no-default-features
More examples are available in the Dioxus examples directory.
Why Use Dioxus
Dioxus stands out with several compelling features that make it an excellent choice for modern application development:
- Cross-Platform Development: Build for web, desktop (macOS, Linux, Windows), mobile (Android, iOS), and even server-side rendering from a single Rust codebase.
- Ergonomic State Management: It combines the best patterns from frameworks like React, Solid, and Svelte, offering a powerful and intuitive signals-based state management system.
- Fullstack Capabilities: Deeply integrates with
axumto provide robust fullstack features, including WebSockets, SSE, streaming, file handling, and server-side rendering. - Rapid Development Cycle: Features subsecond Rust hot-patching and asset hot-reloading, significantly speeding up the development process.
- Optimized Bundling: The integrated bundler ensures highly optimized deployments, generating small
.wasmfiles for web and compact binaries for desktop and mobile. - Comprehensive Documentation: Dioxus offers extensive, clear, and continuously updated documentation, including guides, references, and tutorials.
- Active Community and Core Team: Supported by a vibrant community on Discord and GitHub, alongside a dedicated full-time core team committed to its growth and enterprise-grade tools.
Links
- GitHub Repository: DioxusLabs/dioxus
- Official Website: dioxuslabs.com
- Documentation: docs.rs/dioxus
- Discord Community: Dioxus Discord
- Examples: Dioxus Examples
Related repositories
Similar repositories that may be relevant next.

OpenLogi: A Native, Local-First Logitech Options+ Alternative in Rust
June 1, 2026
OpenLogi is a native, local-first alternative to Logitech Options+, built with Rust. It allows users to remap mouse buttons, control DPI, and manage SmartShift functionality over HID++ without requiring an account or collecting telemetry. This project prioritizes privacy and local control for Logitech mouse users.
RustTraining: Comprehensive Learning Paths for Rust Programmers
May 29, 2026
Microsoft's RustTraining repository offers a comprehensive collection of learning materials designed for Rust programmers of all levels. It provides seven structured training courses, covering topics from foundational concepts for various programming backgrounds to deep dives into async Rust, advanced patterns, and engineering practices. This resource aims to consolidate scattered knowledge into a cohesive and pedagogically sound learning experience.

OpenHuman: Your Private, Powerful AI Super Intelligence
May 27, 2026
OpenHuman is an open-source, agent-based personal AI assistant built with Rust, designed for privacy, simplicity, and power. It integrates seamlessly into your daily workflow, offering local knowledge management, extensive third-party integrations, and advanced memory capabilities. This project aims to provide a personal AI that truly understands and remembers your context from day one.

Tokio: An Asynchronous Runtime for Reliable Rust Applications
April 27, 2026
Tokio is a powerful asynchronous runtime for the Rust programming language, enabling developers to build fast, reliable, and scalable applications. It provides essential components like I/O, networking, scheduling, and timers, making it ideal for high-performance concurrent systems.
Source repository
Open the original repository on GitHub.