Không có mô tả

Jonathan Kelley 7856f2b153 wip: livehost bones 4 năm trước cách đây
.vscode ffaf687896 Feat: update readme and examples 4 năm trước cách đây
docs 9237d02cf2 Feat: update docs a bit 4 năm trước cách đây
examples 3087813570 Feat: synthetic events wired up (ish) 4 năm trước cách đây
js-host 7856f2b153 wip: livehost bones 4 năm trước cách đây
notes 7856f2b153 wip: livehost bones 4 năm trước cách đây
packages 7856f2b153 wip: livehost bones 4 năm trước cách đây
.gitignore 2b9c8d09d9 Feat: docs, code frm percy 4 năm trước cách đây
Cargo.toml 7856f2b153 wip: livehost bones 4 năm trước cách đây
LICENSE c4e8d8bb31 Feat: wire up a very basic dom updater 4 năm trước cách đây
README.md 7856f2b153 wip: livehost bones 4 năm trước cách đây

README.md

🌗🚀 Dioxus

Frontend that scales.

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

#[fc]
static Example: FC<()> = |ctx, props| {
    let (selection, set_selection) = use_state(&ctx, || "...?");

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

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
  • Rust! (enums, static types, modules, efficiency)

Get Started with...

Explore


Dioxus LiveHost

Dioxus LiveHost is a paid service that accelerates the deployment of Dioxus Apps. It provides CI/CD, testing, monitoring, scaling, and deployment specifically for Dioxus apps.

  • It's the fastest way of launching your next internal tool, side-project, or startup. 🚀
WebApps Desktop Mobile State Management Docs Tools