Frontend that scales.
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.
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
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.
In contrast, Dioxus is written in Rust - which is almost like "TypeScript on steroids".
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.