I fucking hate Electron
If given a choice between an electron app and nothing, I choose the electron app.
same. still dont like them tho
You hate electron or you hate developers who make inefficient electron apps? Some examples? (Serious question, because I make electron apps)
A pile of HTML + JS is the only cross platform GUI toolkit that’s practical to deploy.
I’m not really happy about it myself, but realistically there’s not any other option than just bundling a website into a wrapper.
And to pre-empt any replies; your proposed solution must support Windows, Linux (X11 and Wayland), MacOS, iPhone, Android, Chromium and Firefox.
qt?
At least webviews don’t (yet, Google be trying) have the ability to request attestation & ban me for not using the stock, bloatware OS every device comes with. Bonus that I get to keep my data inside the browser’s sandbox; it’s the easiest way to be safe with proprietary software.
If only my bank could get the memo & make their website not suck (it legit checks for Netscape Navigator 4 in the source) so I can be at peace with microG+LineageOS in the phone space (all the banks here do it & I already switched once until my bank, slowly but inevitably ‘modernized’ their app).
Spend 500 hours re-engineering your application for each platform
Just using ten year old proven technology that’s built on a universal backwards compatible framework
You say that, but it seems every major electron update will break your app.
Sure. But that’s one point of failure relative to the N points tied to each major update to a “supported” platform.
“Here’s a website that you needed to install on your phone to see!”
I though the same but I tried Tauri and it makes sense. Unlike electron you’re not shipping the entire browser with your app and the the low level stuff is just rust so the integration is nice and easy. And using webview for UI? Why not? The reactive libraries are actually nice to work with, it’s easy to customize, you have all the tools to inspect/debug your code. It’s definitely better then trying to fit GTK into rust.
I’m using Tauri to play around with Rust. I like it so far.
I always thought it uses far fewer resources than electron.
What are you using from UI? JS or also Rust?
oh JS too, which kinda throws me off because I’m not bad with Web Dev, but I’m not good either and my UI looks like a bad web page than a good desktop app.
I’m actually trying to keep it simple and write my own launcher like Alfred, Albert, Kupfer but I want it to launch my own custom scripts that I can load in a directory as well.
Yeah, UI is hard. I try to use good component librarian as much as possible but actually making it look consistent is difficult.
For the UI I’m using leptos. It’s actually very nice and using rust on both front and back means there’s couple less things to worry about.