No description
Find a file
2021-02-28 17:22:23 -05:00
.vscode Chore: ignore settings 2021-02-24 09:50:53 -05:00
docs Feat: shorten readme 2021-02-16 01:41:41 -05:00
examples Feat: major overhaul to diffing, using a "diffing machine" now 2021-02-14 18:03:16 -05:00
notes Feat: update and prep for dioxusweb 2021-02-28 17:22:23 -05:00
packages Feat: update and prep for dioxusweb 2021-02-28 17:22:23 -05:00
.gitignore Feat: docs, code frm percy 2021-01-14 02:56:41 -05:00
Cargo.toml Feat: event loop 2021-02-12 16:11:33 -05:00
LICENSE Feat: wire up a very basic dom updater 2021-02-14 23:39:46 -05:00
README.md WIP: moving to CbIdx as serializable event system 2021-02-27 11:43:28 -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| {
    let (value, set_value) = use_state(&ctx, || "...?");

    ctx.view(html! {
        <div>
            <h1> "Hello, {value}" </h1>
            <button onclick={move |_| set_value("world!")}> "?" </button>
            <button onclick={move |_| set_value("Dioxus 🎉")}> "?" </button>
        </div>
    })
};

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.

Dioxus is supported by Dioxus Labs, a company providing end-to-end services for building, testing, deploying, and managing Dioxus apps on all supported platforms, designed especially for your next startup.

Get Started with...

WebApps Desktop Mobile State Management Docs Tools

Features

Dioxus' goal is to be the most advanced UI system for Rust, targeting isomorphism and hybrid approaches. Our goal is to eliminate context-switching for cross-platform development - both in UI patterns and programming language. Hooks and components should work everywhere without compromise.

Dioxus Core supports:

  • Hooks for component state
  • Concurrent rendering
  • Context subscriptions
  • State management integrations

Separately, we maintain a collection of high quality, cross-platform hooks and services in the dioxus-hooks repo:

  • dioxus-router: A hook-based router implementation for Dioxus web apps

We also maintain two state management options that integrate cleanly with Dioxus apps:

  • dioxus-reducer: ReduxJs-style global state management
  • dioxus-dataflow: RecoilJs-style global state management

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.