Live data from Hacker News

Ask HN: Any true alternatives to electron JavaScript?

news.ycombinator.com

11–20 of 22 posts

Re: Ask HN: Any true alternatives to electron JavaScript?

#12
For littler personal projects, I’ve used python’s webview to avoid having to bundle a whole browser when the app (it uses the operating system’s default engine). It also didn’t require a learn a whole framework… I could just hook a web front end to some python functions, and run it as a desktop app.

Re: Ask HN: Any true alternatives to electron JavaScript?

#15

Tauri is solid, but after 10 years of navigating the space and shipping desktop apps. My best advice is JUST USE ELECTRON. I know! it hurts to ship a bloated shell, but it works like charm

What are the issues you had that pulled you away from tauri?

Re: Ask HN: Any true alternatives to electron JavaScript?

#16
post #15

Tauri is solid, but after 10 years of navigating the space and shipping desktop apps. My best advice is JUST USE ELECTRON. I know! it hurts to ship a bloated shell, but it works like charm

What are the issues you had that pulled you away from tauri?

for one, tauri uses the webview of the host operating system, which means you're exposed to probably, 100+ different versions of edge, safari, webkit or whatever linux is doing.

Re: Ask HN: Any true alternatives to electron JavaScript?

#17
I use a 1MB Rust shell with a webview (wry and winit). It works wonders

Drop a SQLite db if you want a quick portable app, or postgresql if something more robust on your server.

Tell your AI of choice [2] to create a TODO rust app [1] in html, css and js using wry and winit and you'll see what I mean, a thing of beauty

[1] https://github.com/kuyawa/todo-rust

[2] https://github.com/kuyawa/todo-rust/blob/main/prompt.txt

Post reply on HN