top | item 40220926

Ask HN: Best stack for building a desktop app?

17 points| senda | 1 year ago

should run across Mac/linux/windows.

What tech are you using guys?

41 comments

order

codeptualize|1 year ago

obdev|1 year ago

How is the developer experience when building desktop apps using Tauri?

Is there a lot of friction between the Rust core and the TypeScript frontend?

nitai|1 year ago

100% Tauri. It’s totally awesome and fast.

pdevr|1 year ago

You have to look at old languages for this.

In the order of preference:

Qt (C++), Swing (Java), and Visual Component Library (Delphi) are three tried and tested options for you.

mherrmann|1 year ago

What are your requirements? Performance, development speed, native look and feel, ... Which languages are you familiar with? Do you have a preference with regards to the language?

steffann|1 year ago

I have good experience with https://wails.io. It uses a Go backend and a JavaScript frontend with Go functions exposed to the JavaScript side, and events with senders and listeners on both sides. All without the enormous bloat of Electron.

On the JavaScript side you can use whatever you like: plain JavaScript, react, vue, svelte, … whatever you’re familiar with.

And it can cross compile to Windows, Mac and Linux, so all major platforms covered.

obdev|1 year ago

How is the Wails project being managed?

Does it have a backing company or enough sponsors to ensure its future?

mhd|1 year ago

FreePascal/Lazarus or Tcl/Tk.

If more time is available, then a core of <favorite language> plus a view part in the native platform language and API.

mike986|1 year ago

Not a full blown UI kit but lots of cross platform goodies (C++)

https://www.cockos.com/wdl/

https://github.com/justinfrankel/WDL

WDL Virtual Window system:

    Allows the building of dynamic, complex UIs within OS hosted windows
    Included controls for text display, combo boxes, buttons, sliders, list boxes
    Supports full transparency, overlays, controls with shadows/highlights outside of their range
    Fully themeable (uses LICE for compositing)

yoav|1 year ago

I got fed up with electron a few months ago and making steady progress building Electrobun.

You can think of it like Tauri but you just write typescript for the main and browser contexts. Under the hood it’s powered by bun and zig.

https://github.com/blackboardsh/electrobun

Still a ways to go (I’m currently porting a large app from electron to electrobun and filling in the api as I go) but check back in a couple months.

It’ll be (in my opinion) the best stack to build desktop apps.

cess11|1 year ago

Personal projects, Racket with gui-easy. Close to frictionless GUI development, very nice language(-platform) to build with. Excellent metaprogramming.

Professionally, Java and JavaFX. Decent multi-platform story, there's a config flag for tuning everything, and there's a library for pretty much anything anyone has ever had an issue with and when they don't fit as well as you'd like you just tear it up with reflection and fix.

obdev|1 year ago

Java is indeed a great technology.

JavaFX, however, seems to have many unfixed bugs, even though it's actively maintained.

How do you overcome the obstacles when developing and deploying your JavaFX application[s], so it's working well for you?

1oooqooq|1 year ago

flutter. specially now that google fired half the team

it's not worse than tauri/electron for desktop, and you get mobile for free if needed.

triyambakam|1 year ago

Why would the team being fired be more reason to use it?

bunbun69|1 year ago

> flutter. specially now that google fired half the team

Source?

obdev|1 year ago

Flutter is cool, but does Dart have a decent library ecosystem for the needs beyond a rich client application?

pid-1|1 year ago

In general for a great experience on the desktop you want to use the native stack of each platform, so C# / Windows SDK in Windows, GTK in most Linux distros and whatever Mac officially recommends.

You could use electron and build cross platform apps using web technologies, but I'm yet to use an electron based app that doesn't feel like crap.

wenc|1 year ago

VS Code is electron and it has been optimized to the hilt. I have used it on Mac, Windows and Linux and the experience is uniformly great. It feels native on every platform (responsiveness is not as snappy as vim but it’s good enough and I’m getting a lot of extra features in return, like remote for instance)

But it didn’t come for free. I can tell a lot of engineering hours were spent fixing little issues like different/conflicting keystroke mappings in all 3 platforms.

bitwize|1 year ago

Electron. /thread

Seriously, even John Carmack would probably use Electron because it provides the most value to customer per unit of effort input.

skydhash|1 year ago

And the result is noticeable. Electron is becoming synonymous to shoddily built apps. Even though you can write buggier apps with native SDK, but the amount of works that been put into them elevates the final result. Not so much with Electron.

kleiba|1 year ago

I've used wxwidgets in the past, both from C and from Python. It's appeal is in its simplicity.

sandwichukulele|1 year ago

with no additional context when running on mac/linux/windows, I like boring technologies, doing everything within python running locally while rendering everything in the user's default web browser with basic HTML/js/css

toddmorey|1 year ago

I guess most projects want more presence for their apps but this is a great solution compared to shipping an entire browser with electron.

AhtiK|1 year ago

Depending on the use case either Avalonia or Electron.

flapsflapsflaps|1 year ago

[deleted]

triyambakam|1 year ago

It's a boring meme to say Electron sucks. I don't think it's perfect but it is really easy to use and still worth considering.

petabyt|1 year ago

Most ideas that could be desktop apps would be just as good as web apps or browser extensions. For myself Ive been using libui-ng.github.io/libui-ng/ for a few projects lately

ryandrake|1 year ago

I disagree. They might be "better" from the point of view of the developer, but from the user's perspective, web apps are often much worse.

- Needlessly ties the app to the web / Internet connectivity in order to work (a disadvantage unless the application's purpose involves queries over the Internet).

- The application can change on you without warning and without you taking a deliberate step to update, including adding unwanted functionality and removing wanted functionality.

- You can be denied access to the application remotely (this is also true for native applications that require an account to work).

- Look and feel inconsistent with the rest of your applications / operating system.

- Performance tends to be worse for web apps.

skydhash|1 year ago

Web apps are good for documents and form based applications. Anything else and you'd be better learning a native SDK.