dioxus

Fullstack app framework for web, desktop, and mobile. (by DioxusLabs)

Dioxus Alternatives

Similar projects and alternatives to dioxus

  1. rust

    2,975 dioxus VS rust

    Empowering everyone to build reliable and efficient software.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. htmx

    671 dioxus VS htmx

    </> htmx - high power tools for HTML

  4. bevy

    606 dioxus VS bevy

    A refreshingly simple data-driven game engine built in Rust

  5. tauri

    543 dioxus VS tauri

    Build smaller, faster, and more secure desktop and mobile applications with a web frontend.

  6. rustdesk

    519 dioxus VS rustdesk

    An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.

  7. egui

    238 dioxus VS egui

    egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native

  8. yew

    214 dioxus VS yew

    Rust / Wasm framework for creating reliable and efficient web applications

  9. iced

    201 dioxus VS iced

    A cross-platform GUI library for Rust, inspired by Elm

  10. slint

    169 dioxus VS slint

    Slint is an open-source declarative GUI toolkit to build native user interfaces for Rust, C++, JavaScript, or Python apps.

  11. min-sized-rust

    ๐Ÿฆ€ How to minimize Rust binary size ๐Ÿ“ฆ https://github.com/johnthagen/min-sized-rust

  12. leptos

    85 dioxus VS leptos

    Build fast web applications with Rust.

  13. sniffnet

    92 dioxus VS sniffnet

    Comfortably monitor your network traffic ๐Ÿ•ต๏ธโ€โ™‚๏ธ

  14. sycamore

    73 dioxus VS sycamore

    A library for creating reactive web apps in Rust and WebAssembly

  15. tui-rs

    68 dioxus VS tui-rs

    Discontinued Build terminal user interfaces and dashboards using Rust

  16. druid

    59 dioxus VS druid

    A data-first Rust-native UI design toolkit. (by linebender)

  17. flutter_rust_bridge

    Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple.

  18. blitz

    46 dioxus VS blitz

    A radically modular HTML/CSS rendering engine (by DioxusLabs)

  19. taffy

    42 dioxus VS taffy

    A high performance rust-powered UI layout library

  20. Azul

    28 dioxus VS Azul

    Desktop GUI Framework

  21. rui

    24 dioxus VS rui

    Declarative Rust UI library

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better dioxus alternative or higher similarity.

dioxus discussion

Log in or Post with
  1. User avatar
    a54b22e1
    ยท about 2 years ago
    ยท Reply

    Review โ˜…โ˜…โ˜…โ˜…โ˜… 10/10

dioxus reviews and mentions

Posts with mentions or reviews of dioxus. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-07-31.
  • June in Servo: real world compat, media queries, SharedWorker, and more
    5 projects | news.ycombinator.com | 31 Jul 2026
    Yes! There are a few experiments with JS engines going on (all very early stage atm (and many vibe coded) but looking promising enough to justify doing a proper implementation in future).

    With this you can actually run regular React DOM (so fully compatible with deploying the same codebase to web). There is then the potential to mix in native components, although that's not fully built-out today.

    Finally, as part of this project we develop Dioxus Native (see https://github.com/DioxusLabs/dioxus and https://dioxuslabs.com). This allows you to write your app in a React-like framework in Rust, which also allows you to write a single codebase and compile to both native (desktop/mobile) using Blitz and to web (compiles to WASM, renders using real DOM nodes).

  • Show HN: Nectar, a Rust-like React that compiles to WebAssembly
    3 projects | news.ycombinator.com | 6 Jul 2026
    How is this different / better than Leptos or Dioxus?

    https://leptos.dev/

    https://dioxuslabs.com/

  • Dioxus โ€“ Fullstack app framework for web, desktop, and mobile in Rust
    1 project | news.ycombinator.com | 23 Apr 2026
  • Dioxus Has a Free API: Write React-Style UIs in Rust That Run Everywhere โ€” Web, Desktop, Mobile
    1 project | dev.to | 28 Mar 2026
    The framework is actively developed at dioxuslabs.com with 22,000+ GitHub stars and a growing ecosystem. The component model is stable enough for production use.
  • Velox: A Port of Tauri to Swift by Miguel de Icaza
    8 projects | news.ycombinator.com | 19 Jan 2026
    What's "rust scripting"? I don't see any mention of it in the docs nor dioxus native roadmap and AFAIK https://github.com/DioxusLabs/dioxus/tree/main/packages/inte... is used as the interpreter although I can't for the life of me figure out where the JS engine is actually instantiated.
  • My 2025 Tech Resolutions and My Plan for 2026
    15 projects | dev.to | 15 Jan 2026
    Rewrite Muscurdi - Password Manager in Rust with iced, dioxus and/or tauri โŒ Did not any of those, but I have explored tauri and I am some ideas on some other sideprojects with it. I did a little todo-app in tauri and svelte with a little persistence layer and it is lovely.
  • Dioxus 0.7: User interfaces in Rust that run anywhere
    1 project | news.ycombinator.com | 10 Nov 2025
  • Dioxus v0.7.0
    1 project | news.ycombinator.com | 31 Oct 2025
  • Dioxus 0.7.0
    1 project | news.ycombinator.com | 31 Oct 2025
  • Rust cross-platform GPUI components
    12 projects | news.ycombinator.com | 27 Oct 2025
    > I don't see what advantage this gives

    I believe it may "just" be faster link times. Which may seem minor, but link times can often dominate incremental compile times because it's a slow and (at least historically) serial step which is O(total code size) even if the actual compilation is incremental.

    See mold's linking benchmarks: https://github.com/rui314/mold. It can be the difference between multiple 10s of seconds with traditional linkers vs <2s with newers ones.

    There are few strategies for dealing with these days:

    1. Is just to use a faster multi-threaded linker. On Linux, lld, mold, and wild on Linux are all much faster than the traditional ld/gold (and the latter two another step above lld). On macOS, then new built-in ld64 is pretty good. Not sure what the state is on Windows. Possibly lld is best?

    2. Is dynamic linking as above. This seems to be faster even though the dynamic links need to resolved at runtime. I presume because at least the links wholly within the dynlib don't need to be resolved.

    3. Is tools like Subsecond (https://github.com/DioxusLabs/dioxus/tree/main/packages/subs...) which effectively implement incremental linking by diffing the symbols in object files.

  • A note from our sponsor - SaaSHub
    www.saashub.com | 18 Aug 2026
    SaaSHub helps you find the best software and product alternatives Learn more โ†’

Stats

Basic dioxus repo stats
194
38,707
9.4
5 days ago

DioxusLabs/dioxus is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of dioxus is Rust.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com