dioxus/README.md
2021-03-01 00:16:48 -05:00

3.3 KiB

🌗🚀 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
  • 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.