Wails Has a Free API That Builds Desktop Apps With Go Backend and Web Frontend
go
dev.to
Wails is like Tauri but with Go instead of Rust. Your web frontend (React, Vue, Svelte) + Go backend = native desktop app using OS webview. Quick Start go install github.com/wailsapp/wails/v2/cmd/wails@latest wails init -n myapp -t react-ts cd myapp && wails dev Go Backend // app.go type App struct { ctx context.Context } func (a *App) Greet(name string) string { return fmt.Sprintf("Hello %s!", name) } func (a *App) GetUsers() ([]User, error) { return