←back to thread

142 points stareatgoats | 1 comments | | HN request time: 0.209s | source
Show context
shubhamjain ◴[] No.43545314[source]
I’m a bit confused. I thought the main selling point of Tauri was that it uses the OS’s native WebView to create lighter apps compared to something like Electron. So why would I want to bundle a Servo or Verso? Doesn't that defeat the purpose of Tauri?
replies(8): >>43545331 #>>43545426 #>>43545891 #>>43546249 #>>43546256 #>>43546875 #>>43548611 #>>43551775 #
1. yusefnapora ◴[] No.43546875[source]
I think it makes sense if you think of Tauri as a "view layer" for rust apps. If you're building a rust GUI app using something like Dioxus, I could easily see wanting to bundle a cross-platform renderer with consistent "quirks", vs having to adapt your frontend to work with all the platform web views.

It has trade offs in terms of memory usage and binary size, but Electron has already conditioned users to expect every todo and chat app to be 500mb on disk and use a gigabyte of ram at idle. In other words, if Electron would make sense for your project, but you want to use rust, this seems like a good fit.