Açıklama Yok

Jonathan Kelley 07f671c8e1 Fix: bug that phantom triggered events 4 yıl önce
.vscode ffaf687896 Feat: update readme and examples 4 yıl önce
docs ffaf687896 Feat: update readme and examples 4 yıl önce
examples c8bb392cad Feat: view -> render 4 yıl önce
notes c8bb392cad Feat: view -> render 4 yıl önce
packages 07f671c8e1 Fix: bug that phantom triggered events 4 yıl önce
.gitignore 2b9c8d09d9 Feat: docs, code frm percy 4 yıl önce
Cargo.toml 4b8e9f4a12 Feat: wowza got it all working 4 yıl önce
LICENSE c4e8d8bb31 Feat: wire up a very basic dom updater 4 yıl önce
README.md 4b8e9f4a12 Feat: wowza got it all working 4 yıl önce

README.md

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

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.

WebApps Desktop Mobile State Management Docs Tools