this post was submitted on 08 Jan 2025
3 points (100.0% liked)

Programmer Humor

22133 readers
1897 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Pechente@feddit.org 0 points 2 months ago* (last edited 2 months ago) (2 children)

For anyone considering Electron: take a look at Tauri. It’s another way to build cross-platform apps with web tech. It will use the OS‘s web rendering engine instead of shipping Chromium which results in much smaller binaries and faster startup times and less RAM usage. You can also write native code in Rust. It’s like Electron but good.

[–] XpeeN@sopuli.xyz -1 points 2 months ago (1 children)

What about Flutter? It was pretty nice to work with

[–] Pechente@feddit.org 1 points 2 months ago

The reason people use Electron in the first place is that they wanna share a codebase between web, desktop and possibly mobile.

While Flutter can technically do that, the web apps it outputs are atrocious with poor usability and accessibility. It’s drawing the whole UI on a canvas element which causes all kinds of issues.