Sen descrición

Jonathan Kelley fe67ff9fa4 wip: doesnt share on thread %!s(int64=4) %!d(string=hai) anos
.vscode c28697e1fe Feat: some code health %!s(int64=4) %!d(string=hai) anos
docs 9237d02cf2 Feat: update docs a bit %!s(int64=4) %!d(string=hai) anos
examples 4c8130c4e4 Feat: about to consolidate context and scope %!s(int64=4) %!d(string=hai) anos
notes ba975410f9 wip: parity document %!s(int64=4) %!d(string=hai) anos
packages fe67ff9fa4 wip: doesnt share on thread %!s(int64=4) %!d(string=hai) anos
.gitignore 2b9c8d09d9 Feat: docs, code frm percy %!s(int64=4) %!d(string=hai) anos
Cargo.toml fe67ff9fa4 wip: doesnt share on thread %!s(int64=4) %!d(string=hai) anos
LICENSE c4e8d8bb31 Feat: wire up a very basic dom updater %!s(int64=4) %!d(string=hai) anos
README.md 3cfa1fe125 Feat: buff the readme and docs %!s(int64=4) %!d(string=hai) anos

README.md

🌗🚀 Dioxus

Frontend that scales.

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

//! A complete dioxus web app
use dioxus_web::*;

fn Example(ctx: Context, props: &()) -> DomTree {
    let selection = use_state(ctx, || "...?");

    ctx.render(rsx! {
        div {
            h1 { "Hello, {selection}" }
            button { "?", onclick: move |_| selection.set("world!")}
            button { "?", onclick: move |_| selection.set("Dioxus 🎉")}
        }
    })
};

fn main() {
    dioxus_web::start(Example).block_on();
}

Dioxus can be used to deliver webapps, desktop apps, static pages, liveview apps, Android apps, iOS Apps, and more. At its core, Dioxus is entirely renderer agnostic and has great documentation for creating new renderers for any platform.

Things you'll love ❤️:

  • Ergonomic design
  • Minimal boilerplate
  • Simple build, test, and deploy
  • Support for html! and rsx! templating
  • SSR, WASM, desktop, and mobile support
  • Powerful and simple integrated state management
  • Rust! (enums, static types, modules, efficiency)

Get Started with...

Explore

Blog Posts

  • [Why we need a stronger typed web]()
  • [Isomorphic webapps in 10 minutes]()
  • [Rust is high level too]()
  • [Eliminating crashes with Rust webapps]()
  • [Tailwind for Dioxus]()
  • [The monoglot startup]()
Web Desktop Mobile State Management Docs Tools