blitz

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

Blitz Alternatives

Similar projects and alternatives to blitz

  1. termux-app

    Termux - a terminal emulator application for Android OS extendible by variety of packages.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. imgui

    375 blitz VS imgui

    Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies

  4. datasette

    198 blitz VS datasette

    An open source multi-tool for exploring and publishing data

  5. dioxus

    170 blitz VS dioxus

    Fullstack app framework for web, desktop, mobile, and more.

  6. iced

    177 blitz VS iced

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

  7. typst

    148 blitz VS typst

    A new markup-based typesetting system that is powerful and easy to learn.

  8. slint

    147 blitz VS slint

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

  9. SaaSHub

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

    SaaSHub logo
  10. score

    112 blitz VS score

    ossia score, an interactive sequencer for the intermedia arts

  11. sciter

    88 blitz VS sciter

    Sciter: the Embeddable HTML/CSS/JS engine for modern UI development

  12. taffy

    38 blitz VS taffy

    A high performance rust-powered UI layout library

  13. vello

    37 blitz VS vello

    A GPU compute-centric 2D renderer.

  14. cosmic-text

    Pure Rust multi-line text handling

  15. accesskit

    32 blitz VS accesskit

    Accessibility infrastructure for UI toolkits

  16. freya

    13 blitz VS freya

    Cross-platform GUI library for 🦀 Rust powered by 🧬 Dioxus and 🎨 Skia.

  17. inlyne

    8 blitz VS inlyne

    Introducing Inlyne, a GPU powered yet browserless tool to help you quickly view markdown files in the blink of an eye.

  18. lexbor

    12 blitz VS lexbor

    Lexbor is development of an open source HTML Renderer library. https://lexbor.com

  19. Meadowlark

    10 blitz VS Meadowlark

    A (currently incomplete) open-source Digital Audio Workstation

  20. selectolax

    8 blitz VS selectolax

    Python binding to Modest and Lexbor engines (fast HTML5 parser with CSS selectors).

  21. ToobAmp

    A set of high-quality guitar effect plugins for Raspberry Pi with specific support for PiPedal.

  22. vizia

    10 blitz VS vizia

    A declarative GUI library written in Rust

  23. SaaSHub

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

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

blitz discussion

Log in or Post with

blitz reviews and mentions

Posts with mentions or reviews of blitz. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-10-14.
  • Gosub – An Open-Source Browser Engine Built in Rust
    5 projects | news.ycombinator.com | 14 Oct 2024
    Yes, we're working on that over at https://github.com/DioxusLabs/blitz (alpha release imminent). Our TodoMVC example is current ~20mb with a standard release builds, but comes down to 7.2mb with optimisations like -Oz and LTO enabled (these numbers of from macOS).

    And we plan to allow fine grained configuration of the feature set, so if you don't need certain image formats or layout algorithms or networking support, then you can disable them and save on binary size.

  • Show HN: Electrico – Electron Without Node and Chrome (Rust / Wry)
    3 projects | news.ycombinator.com | 14 Sep 2024
    As it happens, we are building pretty much that over at https://github.com/DioxusLabs/blitz

    There was also a recent HN discussion https://news.ycombinator.com/item?id=41221252

  • Blitz: A lightweight, modular, extensible web renderer
    9 projects | news.ycombinator.com | 11 Aug 2024
  • Lexbor – an open source HTML Renderer library
    6 projects | news.ycombinator.com | 11 Jun 2024
    We have a decent chunk of layout and paint implemented in https://github.com/DioxusLabs/blitz, which is targeting the "electron" use case (but with a rust scripting interface rather than a JS one).

    The implementation is currently very immature and there are a lot of bugs and missing features (I only got a first cut of inline layout working yesterday (but we already have flexbox and grid implemented)), but we're already seeing pretty decent results on a bunch of real-world web pages and hope to be at the point where we can render most of the web (excl. JS) in the next 6 - 12 months.

    There are some screenshots on the PR for the inline layout branch https://github.com/DioxusLabs/blitz/pull/63

  • Deno in 2023
    8 projects | news.ycombinator.com | 5 Feb 2024
    Have you talked to the Dioxus people recently?

    They're working on a project called Dioxus Blitz; from what I'm told, they're trying to implement a minimal browser target, that provides some basic DOM-like features and renders with wgpu.

    It's not exactly what you're hoping for, but you might find common ground.

    https://github.com/DioxusLabs/blitz

    (Also, the Linebender project is working on Masonry, with FFI as a medium-term goal.)

  • If the native speed DOM/Web API for Rust becomes a reality, would you be willing to build your web apps with Rust and HTML/CSS?
    3 projects | /r/rust | 5 Dec 2023
    Your proposal sounds very similar to what the Dioxus folks are doing on Blitz, which is using HTML/CSS as the languages but doing native rendering. WebF seems much further along, and I know they've been exploring other rendering engines, so it may be an interesting conversation for you to have with them.
  • Looking for this. html + css rendering through wgpu.
    14 projects | /r/rust | 3 Jul 2023
    Others have already mentioned inlyne and blitz, however given that you're interested in combining web UI with game/wgpu rendering you may be more interested in bevy_ui (and the higher level APIs like bevy_ui_dsl and belly that sit on top of this). Bevy UI is working on a HTML model and is specifically designed to integrate with Bevy's main game renderer and other infrastructure. It's worth noting that a 0.11 release of Bevy of due in next few days, and that UI is going to be a strong focus of the 0.12 release cycle: which should lead to significant development of bevy_ui, and either a doubling down on the "HTML-like UI" approach or a pivot to a new approach.
  • Awesome presentation of Dioxus - cross-platform GUI framework at RustNL
    3 projects | /r/rust | 14 Jun 2023
    Here is an example: https://github.com/DioxusLabs/blitz/blob/master/examples/buttons.rs
  • Digital Audio Workstation Front End Development Struggles
    16 projects | news.ycombinator.com | 15 May 2023
    > But no one is saying, "Hey I have a CSS 2.1 compliant rasterizer and compositor that you can use in your C++ or Rust environment!" are they?

    There’s actually quite a lot of interesting work going on in that general space, has been in various forms for some years. A couple that immediately spring to mind:

    • Azul <https://azul.rs/> builds on WebRender, as used in Firefox. I haven’t looked at it for a few years, but it looks to have grown quite interesting now.

    • Blitz <https://github.com/DioxusLabs/blitz> is based on from-scratch implementations of CSS layout and rendering, and wgpu rendering. It’s not usable yet, but is a very interesting concept. If one happens to be familiar with React Native: it’s kinda like that, or React Native Web.

  • [Media] Version 0.3 of Inlyne - An interactive markdown renderer written entirely in Rust
    7 projects | /r/rust | 7 May 2023
    You may also be interested in https://github.com/DioxusLabs/blitz which aims to be a full HTML+CSS renderer on top of wgpu (but is currently not nearly as complete as inlyne).
  • A note from our sponsor - SaaSHub
    www.saashub.com | 14 May 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic blitz repo stats
20
2,542
9.8
6 days ago

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

The primary programming language of blitz is Rust.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Rust is
the 5th most popular programming language
based on number of references?