DomTerm VS tauri

Compare DomTerm vs tauri and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
DomTerm tauri
16 469
357 77,375
- 3.0%
8.0 9.8
3 months ago 2 days ago
C++ Rust
GNU General Public License v3.0 or later Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

DomTerm

Posts with mentions or reviews of DomTerm. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-22.
  • Carapace: A multi-shell completion library and binary
    8 projects | news.ycombinator.com | 22 Apr 2024
    Completion for program P should be written and maintained by the "owner" of program P - and installed with program P. This is of course difficult when there are many different "shells" that each have their own "language" for specifying completions. A multi-shell completion library can help with this problem.

    To me it make sense that completion for program P should be handled by program P itself. That way, completions are unlikely to get out of sync with the application, and the completion handler can use the same option parser as the application. A way to do this is to use a special "hidden" switch to request completion.

    Specifically the DomTerm terminal emulator (https://domterm.org) handles its own completions. Bash allows you to register a command that handles completions for some other command. The following tells bash that to handle completions for the domterm command it should call domterm with the magic "#complete-for-bash" option followed by the existing line and position.

        complete -o nospace -C 'domterm "#complete-for-bash" "$COMP_LINE" "$COMP_POINT"' domterm
  • VT330/VT340 Sixel Graphics
    4 projects | news.ycombinator.com | 15 May 2023
    Sixel has the one advantage of being mplemented in xterm and a modest number of other terminals. Otherwise, it's a pretty bad format: Inefficient. Unclear and inconsistently implemented specification. All images have to be a multiple fof 6 pixel rows, which may not align with either image height or character height.

    Some terminal implement some other protocols, but attempts to specify a standard have failed. There are some tricky issues, such as: When does an image or part of an image get erased? Can you write text on top of an image and if so how are they aligned? What happens if you write an image on top of existing text? On top of an existing image? How does scrolling affect things? What happens to the image on window resize or zoom? Can you reliably update part of an image?

    DomTerm (https://domterm.org) supports images in two ways:

  • Show HN: Rust+Svelte=Terminal
    2 projects | news.ycombinator.com | 15 Feb 2023
    If interested in enhanced terminals, please take a look at DomTerm (https://domterm.org). It too optionally uses Tauri/Wry, though it can also also Electron, Qt, or a plain web-browser. You can embed images and rich text among other feayrures. DomTerm also has builtin tmux-like panes+tabs (mouse-draggable), detachable sessions, and a powerful "view" (selection) mode.
  • Solved: mouse click to position cursor in konsole
    1 project | /r/kde | 6 Nov 2022
    bash-preexec.sh and shell-integration.bash are copied from another terminal called DomTerm (that also offers click to position cursor) into ~/.local/share/DomTerm. Those files can be found here.
  • Mosh 1.4.0 Released
    1 project | news.ycombinator.com | 2 Nov 2022
    For people using or considering Mosh or Eternal Terminal: I'd love if you could try DomTerm (https://domterm.org). Specifically DomTerm's support for stable remote connections - see https://domterm.org/Remoting-over-ssh.html .
  • Ask HN: Is it still possible to live in a terminal?
    28 projects | news.ycombinator.com | 14 Oct 2022
    DomTerm (https://domterm.org) isn't quite what you asked for: It only indirectly has a JavaScript console: Since its frontend is a browser engine, you can open up a JavaScript debugger.
  • TermKit: A Rich Graphical Terminal (2011)
    3 projects | news.ycombinator.com | 2 Mar 2022
    DomTerm (https://domterm.org) attempts to provide similar possibilities as TermKit. However, it starts with the position that it should also (and perhaps first) be a fully-functional modern mostly-xterm-compatible terminal emulator. On top of that we add rich html text, images, logical structure, "shell integrayion", and more.
  • Quick roundup of bitmap graphics availability in free/open-source terminal emulators
    20 projects | /r/linux | 28 Feb 2022
    DomTerm - JavaScript, Electron, Qt - Web browser, Linux (+ others?)
  • Using tree data structures to implement terminal split panes
    3 projects | news.ycombinator.com | 30 Jan 2022
    DomTerm (https://domterm.org) uses the Golden Layout library (https://github.com/golden-layout/golden-layout). As far as I can tell, this does everything mentioned in the article. It also supports tabs, and you can also reposition terminal windows by dragging, neither of which I saw mentioned in the article. (I'm currently working on being able to drag between top-level windows. It sort-of-works, but only at the proof-of-concept level.)
  • Terminal support for Emoji – or why terminals don't like families
    6 projects | news.ycombinator.com | 28 Jan 2022
    Please try DomTerm (https://domterm.org). The 2.9.4 AppImage (https://github.com/PerBothner/DomTerm/releases/tag/2.9.4) should have the needed support for grapheme clusters and hopefully work on reasonably up-to-date Linux systems. Of course there are more recent fixes and improvements if you don't mind building from source.

tauri

Posts with mentions or reviews of tauri. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-10.
  • Tauri CRUD Boilerplate
    2 projects | dev.to | 10 Apr 2024
    Hi, dear Tauri! Long time no see. I published my first post, Developing a Desktop Application via Rust and NextJS. The Tauri Way almost a year ago. Since then, Tauri has become stronger. I'm happy about that! And now, I am very pleased to make a useful contribution to the Tauri community. As a full-stack developer, I frequently face situations where I need to start a DB-based UI project as fast as possible. It's stressful if I need to start the project from 100% scratch. I prefer to keep some boilerplates on hand, which will save me time and nerves and will be the subject of this article.
  • Show HN: Floro – Visual Version Control for static assets and strings
    4 projects | news.ycombinator.com | 2 Apr 2024
    Hey Thanks!

    Just electron & vite. I might actually migrate off electron, Tauri (https://tauri.app/) seems to be getting more stable and it's gotten great reviews.

    I think this is the boilerplate I used though https://github.com/cawa-93/vite-electron-builder.

  • 3D and 2D: Testing out my cross-platform graphics engine
    17 projects | news.ycombinator.com | 2 Apr 2024
    Well the great thing about WebAssembly is that you can port QT or anything else to be at a layer below -- thanks to WebAssembly Interface Types[0] and the Component Model specification that works underneath that.

    To over-simplify, the Component Model manages language interop, and WIT constrains the boundaries with interfaces.

    IMO the problem here is defining a 90% solution for most window, tab, button, etc management, then building embeddings in QT, Flutter/Skia, and other lower level engines. Getting a good cross-platform way of doing data passing, triggering re-renders, serializing window state is probably the meat of the interesting work.

    On top of that, you really need great UX. This is normally where projects fall short -- why should I use this solution instead of something like Tauri[2] which is excellent or Electron?

    [0]: https://github.com/WebAssembly/component-model/blob/main/des...

    [1]: https://github.com/WebAssembly/component-model/blob/main/des...

    [2]: https://tauri.app/

  • Interview with Colin Lienard, Founder of GitLight
    2 projects | dev.to | 1 Apr 2024
    Welcome to the 2nd episode of our series “Building with Tauri”, where we chat with developers who build amazing projects and products using Tauri.
  • Building W-9 Crafter
    4 projects | dev.to | 28 Mar 2024
    Tauri seemed like the "thing" I should switch to because everybody loves Rust (heh), and because it ships significantly smaller apps.
  • Tauri + React + ShadcnUI
    2 projects | dev.to | 26 Mar 2024
    First of all, I will be using npm as my package manager but feel free to use whatever you prefer. Find more info here.
  • Slint 1.5: Embracing Android, Improving Live-Preview, and Pythonic Slint
    1 project | news.ycombinator.com | 15 Mar 2024
  • Shoes makes building little graphical programs for Mac, Windows, Linux simple
    13 projects | news.ycombinator.com | 23 Feb 2024
  • Tauri - Rust, Js and Native Apps
    2 projects | dev.to | 12 Feb 2024
    Today I'm talking about Tauri! Do you know all the various tools that allow you to develop native applications starting from web languages? They often need an intermediate compilation, in the middle of which you end up encountering various problems not always transparent and directly solvable with a language mostly detached from native development. On the other hand, there's still the ease of developing attractive and easily usable interfaces, which are more difficult to develop with low level languages.
  • Why Bloat Is Still Software's Biggest Vulnerability
    4 projects | news.ycombinator.com | 9 Feb 2024
    I think Tauri is the most established framework using that approach

    https://tauri.app

What are some alternatives?

When comparing DomTerm and tauri you can also consider the following projects:

yaft - yet another framebuffer terminal

Wails - Create beautiful applications using Go

mosh - Mobile Shell

neutralinojs - Portable and lightweight cross-platform desktop application development framework

wezterm - A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust

dioxus - Fullstack GUI library for web, desktop, mobile, and more.

nushell - A new type of shell

Electron - :electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS

muxile - Putting tmux on your mobile - Muxile is a tmux plugin that lets you control a running tmux session with your phone, no app needed.

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

golden-layout - A multi window layout manager for webapps

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