frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Ask HN: What Toolchains Are People Using for Desktop App Development in 2025?

39•lincoln20xx•2h ago
I recently came across a comment [0] here that highlighted the challenges of building native desktop apps with LLMs. The commenter pointed out how scarce training resources have become—few blog posts, tutorials, or open-source projects exist compared to web or mobile development. They also noted that while desktop app development was a solid career path in the 90s, it's now seen as a dead end for most, outside of big players like Microsoft or Adobe.

This got me thinking: My own experience with desktop development dates back to the late 90s using Turbo Pascal 6 in Delphi, and I'm out of the loop on modern practices. With the evolving landscape, I'm curious about what tools and workflows developers are actually using today.

Some questions to spark discussion:

- What programming languages and frameworks are popular for desktop apps? - Are there any go-to IDEs, build tools, or libraries that make development easier? - Do the above answers change if you care about code performance or efficiency (whatever that means to you)? - Is native desktop app development still viable as a career, or are most greenfield projects shifting to web-based alternatives?

I'd love to hear from folks with recent experience—success stories, pitfalls, and recommendations would be great. Thanks in advance for sharing!

[0] https://news.ycombinator.com/item?id=44841291

Comments

mikewarot•1h ago
Lazarus is the open source equivalent to Delphi these days, and for the most part it's awesome. (The documentation, on the other hand... just isn't fit for purpose)

I've been using Visual Studio Code and Github Copilot together, and it seems to work ok. I've not used it heavily, though, as I'm retired.

bsoles•1h ago
To my dismay, my company uses JavaScript, HTML, CSS with a custom Chromium-based web browser installed on your PC. The performance is shit: GUI performance that should take milliseconds takes seconds to render with constant pinging of corporate servers and user activity logging. Development mostly done in IntelliJ or VS Code.
yjftsjthsd-h•59m ago
At that point, what's the point in maintaining your own browser fork instead of just telling users to point their own (Blink, even) browser at localhost?
bsoles•52m ago
Control of the chrome around the browser page I guess.
dochtman•1h ago
Tauri seems interesting. It combines a Rust core with the platform-native browser engine for presentation. Of course a potential downside is rendering incompatibilities between engines/platforms.
dev08979•1h ago
I support Java software using a Swing GUI. It's fairly performant, but requires a fair bit of boilerplate for setting up the GUI and can take longer than typical web development.
pragmatic•1h ago
Windows Forms are alive and well.

Still supported in latest .net versions.

juped•53m ago
Avalonia is my go-to on .net. It's not too far from WPF.
dmitrybrant•20m ago
A hearty +1 to using WinForms (as long as your desktop app targets Windows only, of course). The fact that WinForms has outlasted so many other UI toolkits is a testament to its simplicity and ease of use. I still use it in numerous personal projects, and I don't foresee Microsoft dropping support for it anytime in the near future.
Palomides•1h ago
Qt with QML for a somewhat embedded use case. I think it hits a really nice intersection of native speed, GPU acceleration, interfacing with C++, and ease of development.

I wouldn't really recommend a career out of it.

diego_moita•1h ago
> I wouldn't really recommend a career out of it.

Care to say why? I ask because that's what I use at work: C++ and Qt

Yes, I'd prefer Rust and Slint/Tauri.

But like a prostitute I don't do what I love, I do what pays the bills.

Palomides•1h ago
I think it's a little too niche, and as embedded processors get more and more powerful, we'll just see the same trend of doing all UI in a browser instead

I do like working in it, though!

LarMachinarum•11m ago
Qt used to be what I used as well, but the licensing has become so repulsive for professional use that I now refuse to touch it now (not even for my open source side projects where this wouldn't be an issue).

Too bad the hopes from the early Nokia adoption days got smashed by MS mole Elop and the later owners of Qt.

mg•1h ago
Now that Chromium supports the File System Access API on desktop and mobile, I am building every software I need as HTML+JS+CSS.

Before that, handling files in the browser was cumbersome. You had to offer download and upload links for users to manage files. And handling whole directories was impossible.

But now web apps are like native software tools that you can use to edit and manage files on the file system.

And the bonus point is that what you build this way is fully functional on mobile too. Right away, without any changes. At least on Android.

lyu07282•56m ago
+1 Another bonus is that it's properly sandboxed, you only give access to the files/directories and other resources it needs.
robertoandred•14m ago
Except you lose native document UI features. Especially frustrating in Electron "apps".
dazzawazza•1h ago
Within game development it's Dear ImGui. https://github.com/ocornut/imgui

Normally with the Windows DX12 backend, sometimes with the SDL+OpenGL backend if you want cross platform support.

Other frameworks are sort of disappearing. C++ all the way although some use it with C#.

gisborne•1h ago
Flutter builds pretty decent desktop apps these days.
AaronAPU•1h ago
I’m using JUCE C++ which is very popular for audio software. But it can be used for more general purpose applications. The latest version has some kind of HTML based UI system but I’ve not migrated yet.
joefourier•27m ago
I’ve tried it in the latest plug-in I’ve worked on - it’s just a webview embedded in the window. It’s really great for faster development of more complex plug-ins but there’s some downsides when it comes to performance and integration with the DAW (I had to do some nasty hacks to get handle mouse clicks and keypresses properly).

I think it would be possible to have those advantages in JUCE/C++ without a webview tho. Maybe just moving to a declarative UI approach for positioning and styles with the ability to refresh (something like litehtml could be handy for that)?

diego_moita•1h ago
For Windows only (because that's the most common platform in the world): C# and .Net. The UI is mostly either WPF or WindowsForms.

For Mac only: new apps use Swift, legacy ones use Objective-C, both with AppKit.

Linux only: these are quite rare and there is a broad mix of them: C++, Java, etc.

Cross-platform: C++ with Qt seems to be the standard. Go and Rust seem to be rising. Rising UI libraries are Tauri, Slint and Iced. There are other alternatives like cross-platform .Net, Java or Flutter. But they don't look very solid and widely adopted.

Then there are other UI frameworks for some specific use cases (games, scientific applications, etc).

self_awareness•1h ago
C++ and Qt.

Rust as a statically linked library where it makes sense.

vladdoster•1h ago
Flutter is a super compelling framework (https://flutter.dev/multi-platform/desktop), but I’d live in fear of it randomly being sent to the Google graveyard.
x0x0•39m ago
It had layoffs in 2024. And Google has emitted a bunch of words about their support for Flutter, but hasn't taken the most obvious step towards solidifying support: guarantee a minimal spend level on Flutter dev for a decade, either internally or by donating to an external foundation. eg we will spend $x on Flutter until 2036. :shrug: So they've carefully retained the option to cut support at will. Which is their choice, but I recently wasn't comfortable starting a greenfield project in it for that reason.
Philpax•1h ago
Rust + egui, but it's a far cry from the convenience or iteration speed of the web. Wherever possible, I build webapps instead, just because it's so much faster to get results (especially with LLMs!)

With that being said, I'd like to try the modern .NET stack sometime. Shame that the UI side of things is still largely Windows-only, and even Microsoft themselves don't know which UI framework they're using this week.

exceptione•29m ago
See Avalonia, cross-platform .net core.
gwbennett•1h ago
For both iOS and Android app: - Xcode - SwiftUI - Supabase - Claude CLI - Skip.tools (converts SwiftUI to native Katlin code)

Been developing mobile apps for over 15 years. This is by far the best stack for developing mobile apps. Speed, total control, native UI's. Love it.

tra3•54m ago
Is there a cross plaform desktop option for that?
adamnemecek•1h ago
I have been recently playing with Dioxus and I kinda like it. I too am dismayed that we are using browser to target desktop but here we are I guess.
akkartik•1h ago
As someone who loved Turbo Pascal, for the past 3 years I use Lua and LÖVE.

https://akkartik.name/freewheeling

strickinato•19m ago
Just chiming in to say that akkartik is doing really interesting stuff and it’s worth diving deep on this site.

<3

akkartik•15m ago
Wow, thank you! <3
mariu52•1h ago
Rust for backend + Qt via cxx-qt bindings.

Would consider flutter for smaller apps as I had a great experience before.

mahadali•40m ago
Zte the hack
woile•39m ago
Slint-ui with rust (they have bindings for cpp, Python and js).

Quite good, I've been building this Pomodoro:

https://github.com/reciperium/temporis/

I've also used nix to build the packages when possible.

One of the things I like about slint is that it has native components. They also have experimental support for Android and iOS.

The language is quite simple as well. Though it could benefit from something like flex

alkonaut•33m ago
.NET and whatever gui framework is appropriate (WPF, Avalonia, WinForms).

Rust + Egui for special cases like DAW plugins.

anonymousd3vil•23m ago
I'm personally aware and used few Desktop app building frameworks like Flutter, Tauri, Electron. I think you might have some luck with Electron support for LLMs since its early development and resources available. But I personally like to use Tauri recently, its backend is Rust but you can plug it in with any JS, CSS framework and develop your application.
osm3000•9m ago
Because I mainly work with python, I am using Kivy (https://kivy.org/).

Earlier I was HTMX, Jinja templates, Flask, Tailwind and little vanilla JS. It was too inelegant for my taste.

I am considering moving to either Swift, or JS/Svelete

Yet Another Online YAML Lint Tool

https://yamllint.vibecodinghub.org
1•ashing•8m ago•0 comments

Show HN: Portfolio Calculator – a simple stock portfolio simulator

https://anotherchart.com/
2•hetelek•10m ago•1 comments

Microsoft investigates Israeli military's use of Azure cloud storage

https://www.theguardian.com/technology/2025/aug/09/microsoft-israeli-military-azure-cloud-investigation
1•laimewhisps•11m ago•0 comments

Show HN: Tovideo – AI Video Generator with 9 Models (Google Veo 3 etc.)

https://apps.apple.com/us/app/ai-video-generator-tovideo/id6748954744
1•incendies•11m ago•0 comments

Show HN: AI That Rewrites Your Shopify Store for Every Visitor in Real Time

1•HariVP03•13m ago•0 comments

Remarkable News in Potatoes

https://www.theatlantic.com/science/archive/2025/07/potato-tomato-evolution-hybrid/683721/
1•naves•13m ago•0 comments

The new American shopping mall is less Macy's, more church, bowling, bookstore

https://www.cnbc.com/2025/08/09/americas-dying-shopping-malls-have-surprising-rebound-in-store.html
1•rntn•14m ago•0 comments

Show HN: Custom statusline for Claude Code with Git/PR/environment info

https://gist.github.com/dhkts1/55709b1925b94aec55083dd1da9d8f39
1•dhkts1•14m ago•0 comments

Wassette: Microsoft's Rust-Powered Bridge Between WASM and MCP

https://thenewstack.io/wassette-microsofts-rust-powered-bridge-between-wasm-and-mcp/
1•weinzierl•16m ago•0 comments

Honky-Tonk Tokyo (2020)

https://www.afar.com/magazine/in-tokyo-japan-country-music-finds-an-audience
2•NaOH•16m ago•0 comments

JD Vance's team had water level of Ohio river raised for family's boating trip

https://www.theguardian.com/us-news/2025/aug/06/jd-vance-ohio-lake-water-levels
3•LopRabbit•19m ago•0 comments

Physical Media Is Cool Again. Streaming Services Have Themselves to Blame

https://www.rollingstone.com/culture/culture-features/physical-media-collectors-trend-viral-streamers-1235387314/
6•coloneltcb•21m ago•0 comments

Citizen Lab director warns cyber industry about US authoritarian descent

https://techcrunch.com/2025/08/06/citizen-lab-director-warns-cyber-industry-about-us-authoritarian-descent/
1•throw0101d•21m ago•0 comments

Show HN: Goat – An open-source social debate platform

https://www.goat.uz
1•umarov•21m ago•0 comments

Curious about the training data of OpenAI's new GPT-OSS models? I was too

https://twitter.com/jxmnop/status/1953899426075816164
1•tosh•25m ago•0 comments

Linus Torvalds Rejects RISC-V Changes for Linux 6.17: "Garbage"

https://www.phoronix.com/news/Linux-6.17-RISC-V-Rejected
1•hortense•27m ago•0 comments

Batch Inference Benchmarks

https://outerbounds.com/blog/autonomous-inference
1•locomotive-mp•30m ago•0 comments

Google rolls out AI coding tool for GitHub

https://www.infoworld.com/article/4036153/google-rolls-out-ai-coding-tool-for-github-repos.html
2•msolujic•32m ago•0 comments

Breaking through the Senior Engineer ceiling

https://incident.io/blog/breaking-through-the-senior-engineer-ceiling
1•shelika•34m ago•0 comments

We built Chipp – 1,650 users have moved $54K since March

https://chipp.it/index.html
1•ompatil94•35m ago•1 comments

Debian 13 "Trixie" Released

https://micronews.debian.org/2025/1754772107.html
2•todsacerdoti•36m ago•0 comments

Ch.at – a lightweight LLM chat service accessible through HTTP, SSH, DNS and API

https://ch.at/
2•ownlife•37m ago•0 comments

Inspector: Visual testing tool for MCP servers

https://github.com/modelcontextprotocol/inspector
1•tosh•41m ago•0 comments

Ask HN: OpenAI GPT-5 API seems to be significantly slower – is this expected?

3•tlogan•42m ago•2 comments

Learnings from two years of using AI tools for software engineering

https://newsletter.pragmaticengineer.com/p/two-years-of-using-ai
1•rbanffy•45m ago•0 comments

Ask HN: Would you still recommend SICP in 2025?

1•dondraper36•46m ago•0 comments

Textile scientist on unshrinking clothes that's shrunk in the wash

https://theconversation.com/why-do-some-clothes-shrink-in-the-wash-a-textile-scientist-explains-how-to-unshrink-them-259388
1•gsf_emergency_2•48m ago•0 comments

Episode 2 – Wolf Rock Lighthouse maintenance visit and tour [video]

https://www.youtube.com/watch?v=m81KWrfJED0
2•toomuchtodo•50m ago•0 comments

Google Gemini's Self Loathing

https://www.businessinsider.com/gemini-self-loathing-i-am-a-failure-comments-google-fix-2025-8
2•FergusArgyll•51m ago•1 comments

Show HN: I Started Building a Clay Alternative

https://www.enrichspot.com
1•xnoyzi•52m ago•0 comments