# 🍥 tiramisu > ` is tiramisu a cake or a pie?` Build modern, cross-platform desktop apps in HTML + Go from one codebase. It uses the built-in OS webview (WebView2 on Windows, WebKitGTK on Linux, and WebKit on macOS) to render HTML to the screen. Tiramisu creates a connection between Go and the webview, allowing you manipulate the UI and calling Go methods from the webview seamlessly. ## Features - 💻 **Cross-platform**: Write once, run everywhere. Tiramisu supports Windows, macOS, and Linux. - 🪶 **Lightweight**: No need for a heavy framework. Tiramisu uses the built-in webview of the OS. - ⚡**Fast development**: Use *ANY* web framework for your UI. Tiramisu handles all the magic of making it work, for you. ## Installation `go install github.com/grngxd/tiramisu` ## Example ```go package main import ( "fmt" "github.com/grngxd/tiramisu" ) func main() { // create the webview instance app := tiramisu.New(tiramisu.Options{ Title: "Tiramisu Example", Width: 800, Height: 600, }) // bind a go function to the webview app.Bind("hello", func(name string) string { return fmt.Sprintf("Hello, %s!", name) }) // set the HTML content of the webview app.HTML(`