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.
Ask HN: What toolchains are people using for desktop app development in 2025?
31–40 of 136 posts
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#32I’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.
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)?
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#33Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#34Windows Forms are alive and well. Still supported in latest .net versions.
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#35As someone who loved Turbo Pascal, for the past 3 years I use Lua and LÖVE. https://akkartik.name/freewheeling
<3
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#36Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#37Now 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 t…
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#38Qt 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.
Too bad the hopes from the early Nokia adoption days got smashed by MS mole Elop and the later owners of Qt.
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#39Earlier 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
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#40To 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.