No description
Find a file
2021-06-10 11:45:32 -04:00
.vscode Chore: some cleanup and documentation 2021-06-10 01:01:53 -04:00
docs Chore: some cleanup and documentation 2021-06-10 01:01:53 -04:00
examples docs: move into a fromjs tutorial 2021-06-03 12:02:46 -04:00
notes wip: pre vnodes instead of vnode 2021-06-08 14:00:29 -04:00
packages Chore: some cleanup and documentation 2021-06-10 01:01:53 -04:00
.gitignore Feat: docs, code frm percy 2021-01-14 02:56:41 -05:00
Cargo.toml wip: pre vnodes instead of vnode 2021-06-08 14:00:29 -04:00
LICENSE Feat: wire up a very basic dom updater 2021-02-14 23:39:46 -05:00
README.md Doc: change up example a bit 2021-06-10 11:45:32 -04:00

🌗🚀 Dioxus

Frontend that scales.

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

fn Example(ctx: Context<()>) -> VNodes {
    let (selection, set_selection) = use_state(&ctx, || "..?");

    ctx.render(rsx! {
        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.

If you know React, then you already know Dioxus.

Things you'll love ❤️:

  • Ergonomic design
  • Minimal boilerplate
  • Familiar design and semantics
  • Simple build, test, and deploy
  • Support for html! and rsx! templating
  • SSR, WASM, desktop, and mobile support
  • Powerful and simple integrated state management
  • Rust! (enums, static types, modules, efficiency)

Get Started with...

Web Desktop Mobile State Management Docs Tools

Explore

Blog Posts

  • Why we need a stronger typed web
  • Isomorphic webapps in 10 minutes
  • Rust is high level too
  • Eliminating crashes with Rust webapps
  • Tailwind for Dioxus
  • The monoglot startup

Why?


TypeScript is a great addition to JavaScript, but comes with a lot of tweaking flags, a slight performance hit, and an uneven ecosystem where some of the most important packages are not properly typed. TypeScript provides a lot of great benefits to JS projects, but comes with its own "tax" that can slow down dev teams. Rust can be seen as a step up from TypeScript, supporting:

  • static types for all libraries
  • advanced pattern matching
  • immutability by default
  • clean, composable iterators
  • a good module system
  • integrated documentation
  • inline built-in unit/integration testing
  • best-in-class error handling
  • simple and fast build system
  • powerful standard library (no need for lodash or underscore)
  • include_str! for integrating html/css/svg templates directly
  • various macros (html!, rsx!) for fast template iteration

And much more. Dioxus makes Rust apps just as fast to write as React apps, but affords more robustness, giving your frontend team greater confidence in making big changes in shorter time. Dioxus also works on the server, on the web, on mobile, on desktop - and it runs completely natively so performance is never an issue.