πŸŒ—πŸš€ Dioxus

Frontend that scales.

Crates.io version Download docs.rs docs CI status
Awesome Page Discord Link

Website | Guide | Examples

English | δΈ­ζ–‡


Dioxus is a portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust.

```rust fn app(cx: Scope) -> Element { let (count, setcount) = usestate(&cx, || 0);

cx.render(rsx!(
    h1 { "High-Five counter: {count}" }
    button { onclick: move |_| set_count(count + 1), "Up high!" }
    button { onclick: move |_| set_count(count - 1), "Down low!" }
))

} ```

Dioxus can be used to deliver webapps, desktop apps, static sites, liveview apps, mobile apps (WIP), and more. At its core, Dioxus is entirely renderer agnostic and has great documentation for creating new renderers for any platform.

If you know React, then you already know Dioxus.

Unique features:

Examples

All examples in this repo are desktop apps. To run an example, simply clone this repo and use cargo run --example XYZ

cargo run --example EXAMPLE

Get Started with...

Tutorial Web Desktop SSR Mobile State

Example Projects:

| File Navigator (Desktop) | WiFi scanner (Desktop) | TodoMVC (All platforms) | E-commerce w/ Tailwind (SSR/LiveView) | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | File Explorer | Wifi Scanner Demo | TodoMVC example | E-commerce Example |

See the awesome-dioxus page for a curated list of content in the Dioxus Ecosystem.

Why Dioxus and why Rust?

TypeScript is a fantastic addition to JavaScript, but it's still fundamentally JavaScript. TS code runs slightly slower, has tons of configuration options, and not every package is properly typed.

In contrast, Dioxus is written in Rust - which is almost like "TypeScript on steroids".

By using Rust, we gain:

Specifically, Dioxus provides us many other assurances:

And much more. Dioxus makes Rust apps just as fast to write as React apps, but affords more robustness, giving your frontend team greater confidence in making big changes in shorter time.

Why NOT Dioxus?

You shouldn't use Dioxus if:

Comparison with other Rust UI frameworks

Dioxus primarily emphasizes developer experience and familiarity with React principles.

Parity with React & Roadmap

Dioxus is heavily inspired by React, but we want your transition to feel like an upgrade. Dioxus is most of the way there, but missing a few key features. These include:

Dioxus is unique in the Rust ecosystem in that it supports:

For more information on what features are currently available and the roadmap for the future, be sure to check out the guide.

Projects in the ecosystem

Want to jump in and help build the future of Rust frontend? There's plenty of places where your contributions can make a huge difference:

License

This project is licensed under the [MIT license].

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you, shall be licensed as MIT, without any additional terms or conditions.