Electron Compare
Tauri VS. Electron - Real world application
In this article I'm going to compare Electron and Tauri using a real world app: Authme. Authme is a Simple cross-platform two-factor authenticator app for desktop. It's not a big app and not very complex, perfect for a little comparison. You can take a look at the source code of the Electron app here and the Tauri app here.
https://www.levminer.com/blog/tauri-vs-electron

github
GitHub - tauri-apps/tauri: Build smaller, faster, and more secure desktop applications with a web frontend.
Tauri is a framework for building tiny, blazing fast binaries for all major desktop platforms. Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their user interface. The backend of the application is a rust-sourced binary with an API that the front-end can interact with.
https://github.com/tauri-apps/tauri
vue template
GitHub - yooneskh/vite-tauri-template: Tauri + Vite + Vue 3 + Vuetify 3 desktop app template
This is a starter template for those who want to make a desktop application with web technologies. This template uses the below stack. Vite.js is a new modern bundler for javascript which is blazing fast and includes many sensible defaults.
https://github.com/yooneskh/vite-tauri-template

Seonglae Cho