dioxus/README.md

226 lines
13 KiB
Markdown
Raw Normal View History

2021-01-16 15:31:17 +00:00
<div align="center">
<h1>🌗🚀 Dioxus</h1>
<p>
2021-03-02 06:47:27 +00:00
<strong>Frontend that scales.</strong>
2021-01-16 15:31:17 +00:00
</p>
</div>
2021-07-12 16:20:58 +00:00
<div align="center">
<!-- Crates version -->
2021-09-07 22:25:57 +00:00
<a href="https://crates.io/crates/dioxus">
<img src="https://img.shields.io/crates/v/dioxus.svg?style=flat-square"
2021-07-12 16:20:58 +00:00
alt="Crates.io version" />
</a>
<!-- Downloads -->
2021-09-07 22:25:57 +00:00
<a href="https://crates.io/crates/dioxus">
<img src="https://img.shields.io/crates/d/dioxus.svg?style=flat-square"
2021-07-12 16:20:58 +00:00
alt="Download" />
</a>
<!-- docs -->
2021-09-07 22:25:57 +00:00
<a href="https://docs.rs/dioxus">
2021-07-12 16:20:58 +00:00
<img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square"
alt="docs.rs docs" />
</a>
<!-- CI -->
<a href="https://github.com/jkelleyrtp/dioxus/actions">
2021-12-29 04:48:25 +00:00
<img src="https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg"
2021-07-12 16:20:58 +00:00
alt="CI status" />
</a>
</div>
<div align="center">
<!--Awesome -->
<a href="https://github.com/dioxuslabs/awesome-dioxus">
<img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome Page" />
</a>
<!-- Discord -->
<a href="https://discord.gg/XgGxMSkvUM">
<img src="https://badgen.net/discord/members/XgGxMSkvUM" alt="Awesome Page" />
2021-07-12 16:20:58 +00:00
</a>
</div>
2021-07-12 16:20:58 +00:00
<div align="center">
<h3>
2021-12-29 04:48:25 +00:00
<a href="https://dioxuslabs.com"> Website </a>
2021-07-12 16:22:08 +00:00
<span> | </span>
<a href="https://dioxuslabs.com/guide"> Guide </a>
<span> | </span>
<a href="https://github.com/DioxusLabs/example-projects"> Examples </a>
2021-07-12 16:20:58 +00:00
</h3>
</div>
2022-01-13 04:16:17 +00:00
<div align="center">
<h4>
<a href="https://github.com/DioxusLabs/dioxus/blob/master/README.md"> English </a>
<span> | </span>
2022-01-13 14:30:18 +00:00
<a href="https://github.com/DioxusLabs/dioxus/blob/master/notes/README/ZH_CN.md"> 中文 </a>
2022-01-13 04:16:17 +00:00
</h3>
</div>
2021-07-12 16:20:58 +00:00
<br/>
2021-12-29 04:48:25 +00:00
Dioxus is a portable, performant, and ergonomic framework for building cross-platform user interfaces in Rust.
```rust
2021-12-29 04:20:01 +00:00
fn app(cx: Scope) -> Element {
2021-12-15 03:59:34 +00:00
let mut count = use_state(&cx, || 0);
2021-02-25 23:44:00 +00:00
2021-09-20 20:49:36 +00:00
cx.render(rsx!(
2021-07-11 23:31:07 +00:00
h1 { "High-Five counter: {count}" }
2021-07-08 16:01:31 +00:00
button { onclick: move |_| count += 1, "Up high!" }
button { onclick: move |_| count -= 1, "Down low!" }
2021-09-20 20:49:36 +00:00
))
}
```
2021-09-20 20:49:36 +00:00
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:
2021-10-19 16:09:23 +00:00
- Desktop apps running natively (no Electron!) in less than 10 lines of code.
2021-12-01 03:48:05 +00:00
- Incredibly ergonomic and powerful state management.
2021-12-29 04:48:25 +00:00
- Comprehensive inline documentation - hover and guides for all HTML elements, listeners, and events.
2021-12-01 03:48:05 +00:00
- Extremely memory efficient - 0 global allocations for steady-state components.
2021-12-29 04:48:25 +00:00
- Multi-channel asynchronous scheduler for first-class async support.
2022-01-03 19:42:36 +00:00
- And more! Read the [full release post here](https://dioxuslabs.com/blog/introducing-dioxus/).
### 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
```
2021-03-01 05:16:48 +00:00
## Get Started with...
2021-02-08 22:09:21 +00:00
<table style="width:100%" align="center">
<tr >
2022-01-03 15:20:14 +00:00
<th><a href="https://dioxuslabs.com/guide/">Tutorial</a></th>
<th><a href="https://dioxuslabs.com/reference/web">Web</a></th>
<th><a href="https://dioxuslabs.com/reference/desktop/">Desktop</a></th>
<th><a href="https://dioxuslabs.com/reference/ssr/">SSR</a></th>
<th><a href="https://dioxuslabs.com/reference/mobile/">Mobile</a></th>
<th><a href="https://dioxuslabs.com/guide/concepts/managing_state.html">State</a></th>
2021-02-08 22:05:58 +00:00
<tr>
</table>
2021-09-07 22:32:47 +00:00
## Example Projects:
2021-09-20 20:49:36 +00:00
2022-01-03 16:37:50 +00:00
| File Navigator (Desktop) | WiFi scanner (Desktop) | TodoMVC (All platforms) | E-commerce w/ Tailwind (SSR/LiveView) |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [![File Explorer](https://github.com/DioxusLabs/example-projects/raw/master/file-explorer/image.png)](https://github.com/DioxusLabs/example-projects/blob/master/file-explorer) | [![Wifi Scanner Demo](https://github.com/DioxusLabs/example-projects/raw/master/wifi-scanner/demo_small.png)](https://github.com/DioxusLabs/example-projects/blob/master/wifi-scanner) | [![TodoMVC example](https://github.com/DioxusLabs/example-projects/raw/master/todomvc/example.png)](https://github.com/DioxusLabs/example-projects/blob/master/todomvc) | [![E-commerce Example](https://github.com/DioxusLabs/example-projects/raw/master/ecommerce-site/demo.png)](https://github.com/DioxusLabs/example-projects/blob/master/ecommerce-site) |
2021-12-15 03:59:34 +00:00
2021-09-20 20:49:36 +00:00
2022-01-13 04:30:05 +00:00
See the [awesome-dioxus](https://github.com/DioxusLabs/awesome-dioxus) page for a curated list of content in the Dioxus Ecosystem.
2021-09-10 00:58:48 +00:00
2021-12-01 03:48:05 +00:00
## Why Dioxus and why Rust?
2021-12-01 03:48:05 +00:00
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.
2021-12-01 03:48:05 +00:00
In contrast, Dioxus is written in Rust - which is almost like "TypeScript on steroids".
2021-12-01 03:48:05 +00:00
By using Rust, we gain:
- Static types for *every* library
- Immutability by default
- A simple and intuitive module system
- Integrated documentation (`go to source` _actually goes to source_)
- Advanced pattern matching
- Clean, efficient, composable iterators
- Inline built-in unit/integration testing
- Best-in-class error handling
2021-12-01 03:50:26 +00:00
- Powerful and sane standard library
2021-12-01 03:48:05 +00:00
- Flexible macro system
- Access to `crates.io`
Specifically, Dioxus provides us many other assurances:
- Proper use of immutable datastructures
- Guaranteed error handling (so you can sleep easy at night not worrying about `cannot read property of undefined`)
- Native performance on mobile
- Direct access to system IO
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:
2021-12-01 03:50:26 +00:00
2021-12-01 03:48:05 +00:00
- You don't like the React Hooks approach to frontend
- You need a no-std renderer
- You want to support browsers where Wasm or asm.js are not supported.
2021-12-01 03:50:26 +00:00
- You need a Send+Sync UI solution (Dioxus is not currently ThreadSafe)
2021-06-24 15:09:38 +00:00
### Comparison with other Rust UI frameworks
Dioxus primarily emphasizes **developer experience** and **familiarity with React principles**.
2022-01-13 16:25:18 +00:00
- [Yew](https://github.com/yewstack/yew): prefers the elm pattern instead of React-hooks, no borrowed props, supports SSR (no hydration).
- [Percy](https://github.com/chinedufn/percy): Supports SSR but less emphasis on state management and event handling.
- [Sycamore](https://github.com/sycamore-rs/sycamore): VDOM-less using fine-grained reactivity, but lacking in ergonomics.
- [Dominator](https://github.com/Pauan/rust-dominator): Signal-based zero-cost alternative, less emphasis on community and docs.
2021-06-24 15:09:38 +00:00
# Parity with React
2021-06-24 15:18:58 +00:00
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. This parity table does not necessarily include important ecosystem crates like code blocks, markdown, resizing hooks, etc.
2021-06-24 15:09:38 +00:00
2021-06-24 15:17:59 +00:00
2021-08-09 21:09:33 +00:00
| Feature | Dioxus | React | Notes for Dioxus |
| ------------------------- | ------ | ----- | -------------------------------------------------------------------- |
| Conditional Rendering | ✅ | ✅ | if/then to hide/show component |
| Map, Iterator | ✅ | ✅ | map/filter/reduce to produce rsx! |
| Keyed Components | ✅ | ✅ | advanced diffing with keys |
| Web | ✅ | ✅ | renderer for web browser |
| Desktop (webview) | ✅ | ✅ | renderer for desktop |
| Shared State (Context) | ✅ | ✅ | share state through the tree |
| Hooks | ✅ | ✅ | memory cells in components |
| SSR | ✅ | ✅ | render directly to string |
| Component Children | ✅ | ✅ | cx.children() as a list of nodes |
| Headless components | ✅ | ✅ | components that don't return real elements |
| Fragments | ✅ | ✅ | multiple elements without a real root |
| Manual Props | ✅ | ✅ | Manually pass in props with spread syntax |
| Controlled Inputs | ✅ | ✅ | stateful wrappers around inputs |
| CSS/Inline Styles | ✅ | ✅ | syntax for inline styles/attribute groups |
| Custom elements | ✅ | ✅ | Define new element primitives |
| Suspense | ✅ | ✅ | schedule future render from future/promise |
| Integrated error handling | ✅ | ✅ | Gracefully handle errors with ? syntax |
| NodeRef | ✅ | ✅ | gain direct access to nodes |
2021-08-09 21:09:33 +00:00
| Re-hydration | ✅ | ✅ | Pre-render to HTML to speed up first contentful paint |
| Jank-Free Rendering | ✅ | ✅ | Large diffs are segmented across frames for silky-smooth transitions |
| Effects | ✅ | ✅ | Run effects after a component has been committed to render |
2021-12-15 03:59:34 +00:00
| Portals | 🛠 | ✅ | Render nodes outside of the traditional tree structure |
| Cooperative Scheduling | 🛠 | ✅ | Prioritize important events over non-important events |
| Server Components | 🛠 | ✅ | Hybrid components for SPA and Server |
| Bundle Splitting | 👀 | ✅ | Efficiently and asynchronously load the app |
| Lazy Components | 👀 | ✅ | Dynamically load the new components as the page is loaded |
| 1st class global state | ✅ | ✅ | redux/recoil/mobx on top of context |
2021-08-09 21:09:33 +00:00
| Runs natively | ✅ | ❓ | runs as a portable binary w/o a runtime (Node) |
| Subtree Memoization | ✅ | ❓ | skip diffing static element subtrees |
| High-efficiency templates | 🛠 | ❓ | rsx! calls are translated to templates on the DOM's side |
2021-08-09 21:09:33 +00:00
| Compile-time correct | ✅ | ❓ | Throw errors on invalid template layouts |
| Heuristic Engine | ✅ | ❓ | track component memory usage to minimize future allocations |
| Fine-grained reactivity | 👀 | ❓ | Skip diffing for fine-grain updates |
2021-06-25 13:31:13 +00:00
2021-06-24 15:15:55 +00:00
- ✅ = implemented and working
- 🛠 = actively being worked on
2021-06-25 13:33:59 +00:00
- 👀 = not yet implemented or being worked on
2021-06-24 15:15:55 +00:00
- ❓ = not sure if will or can implement
2021-09-20 16:32:21 +00:00
2021-11-12 21:06:33 +00:00
2021-09-20 16:36:43 +00:00
## License
This project is licensed under the [MIT license].
2021-12-29 04:48:25 +00:00
[MIT license]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE
2021-09-20 16:36:43 +00:00
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
2021-12-15 03:59:34 +00:00
for inclusion in Dioxus by you, shall be licensed as MIT, without any additional
2021-09-20 16:36:43 +00:00
terms or conditions.