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.

Start-Technologies: Monorepo for StartOS and Self-Hosting Solutions
August 13, 2026
Start-Technologies is the comprehensive monorepo by Start9Labs, featuring StartOS as its flagship product. This open-source Linux distribution enables users to run personal servers, facilitating the self-hosting of various services for enhanced data ownership and privacy. It integrates a robust Rust backend, an Angular frontend, and a unique diff-based database for reactive state synchronization.
Cortex-Mem: A Production-Ready Memory Framework for Autonomous AI Systems
August 12, 2026
Cortex-Mem is a production-ready, AI-native memory framework built in Rust, providing intelligent long-term memory for autonomous systems. It features a hierarchical three-tier memory architecture for efficient information management, from extraction and search to automated optimization. This framework empowers AI agents to remember, learn, and personalize interactions across sessions, transforming stateless AI into context-aware partners.

CubeSandbox: Instant, Concurrent, and Secure Sandbox for AI Agents
August 9, 2026
CubeSandbox, developed by TencentCloud, is a high-performance, secure sandbox service built on RustVMM and KVM, designed specifically for AI agents. It offers ultra-fast startup times, hardware-level isolation, and high-density deployment, making it ideal for scalable and secure agent execution environments. The service is also fully compatible with the E2B SDK for seamless integration.
StringWars: Benchmarking High-Performance String Processing in Rust and Python
July 21, 2026
StringWars is a comprehensive GitHub repository dedicated to benchmarking performance-oriented string processing libraries in Rust and Python. It meticulously compares various operations, including substring search, hashing, and edit distances, across both CPUs and GPUs. This project serves as an invaluable resource for developers seeking to identify the fastest and most efficient solutions for critical string manipulation tasks, particularly those leveraging modern SIMD instructions and GPU acceleration.
Source repository
Open the original repository on GitHub.
12 counted GitHub visits