←back to thread

131 points CharlesW | 2 comments | | HN request time: 0.42s | source
Show context
sshine ◴[] No.42200114[source]
How do they manage the OS-specific stuff with pure TypeScript? How does it compare in benchmarks against Tauri for size and speed?
replies(2): >>42200206 #>>42200232 #
1. c0wb0yc0d3r ◴[] No.42200232[source]
I dug through it a tiny bit because I was curious as well. To me it looks like OS-specifics aren't dealt with in the project. It uses bun to run the TypeScript. From the getting started docs the project just opens a browser window for the UI. I didn't look to see if this meant the user's default browser or a bundled browser.
replies(1): >>42200661 #
2. yoav ◴[] No.42200661[source]
Native bindings written in c/objc and a zig binary that bun spawns.