Dioxus is a portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust.
```rust fn app(cx: Scope) -> Element { let mut count = use_state(&cx, || 0);
cx.render(rsx! {
h1 { "High-Five counter: {count}" }
button { onclick: move |_| count += 1, "Up high!" }
button { onclick: move |_| count -= 1, "Down low!" }
})
} ```
Dioxus can be used to deliver webapps, desktop apps, static sites, mobile apps, TUI apps, liveview apps, and more. Dioxus is entirely renderer agnostic and can be used as platform for any renderer.
If you know React, then you already know Dioxus.
Tutorial | Web | Desktop | SSR | Mobile | State |
---|---|---|---|---|---|
| File Navigator (Desktop) | WiFi scanner (Desktop) | TodoMVC (All platforms) | E-commerce w/ Tailwind (SSR/LiveView) |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| |
|
|
|
See the awesome-dioxus page for a curated list of content in the Dioxus Ecosystem.
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.
By using Rust, we gain:
go to source
actually goes to source)crates.io
Specifically, Dioxus provides us many other assurances:
cannot read property of undefined
)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.
You shouldn't use Dioxus if:
Dioxus primarily emphasizes developer experience and familiarity with React principles.
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.
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:
This project is licensed under the [MIT license].
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.