No description
Find a file
2021-03-01 00:18:05 -05:00
.vscode Feat: update readme and examples 2021-03-01 00:16:48 -05:00
docs Feat: update readme and examples 2021-03-01 00:16:48 -05:00
examples Feat: view -> render 2021-02-28 21:21:17 -05:00
notes Feat: view -> render 2021-02-28 21:21:17 -05:00
packages Feat: update readme and examples 2021-03-01 00:16:48 -05:00
.gitignore Feat: docs, code frm percy 2021-01-14 02:56:41 -05:00
Cargo.toml Chore: remove html crate 2021-02-28 17:30:10 -05:00
LICENSE Feat: wire up a very basic dom updater 2021-02-14 23:39:46 -05:00
README.md Feat: clean up readme 2021-03-01 00:18:05 -05:00

🌗🚀 Dioxus

A concurrent, functional, virtual DOM for Rust

About

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

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 ❤️:

  • Minimal boilerplate
  • Ergonomic lifetime design for props and state management
  • Simple build, test, and deploy
  • "Dioxus Designer" for instant component reloading
  • Support for html! and rsx! templating
  • SSR, WASM, desktop, and mobile support

Get Started with...

WebApps Desktop Mobile State Management Docs Tools

Explore


Dioxus LiveHost

Dioxus LiveHost is a paid service dedicated to hosting your Dioxus Apps - whether they be server-rendered, wasm-only, or a liveview. LiveHost enables a wide set of features:

  • Versioned combined frontend and backend with unique access links
  • Builtin CI/CD for all supported Dioxus platforms (macOS, Windows, Android, iOS, server, WASM, etc)
  • Managed and pluggable storage database backends (PostgresSQL, Redis)
  • Serverless support for minimal latency
  • Analytics
  • Lighthouse optimization
  • On-premise support (see license terms)
  • Cloudfare/DDoS protection integrations
  • Web-based simulators for iOS, Android, Desktop
  • Team + company management

For small teams, LiveHost is free 🎉. Check out the pricing page to see if Dioxus LiveHost is good fit for your team.