Go-WebUI v2.5.3

August 19, 2026 · View on GitHub

Logo

Go-WebUI v2.5.3

Features · Installation · Usage · Documentation · WebUI

Use any web browser or WebView as GUI.
With Go in the backend and modern web technologies in the frontend.

Screenshot

Features

  • Parent library written in pure C
  • Portable (Needs only a web browser or a WebView at runtime)
  • Lightweight (Few Kb library) & Small memory footprint
  • Fast binary communication protocol
  • Multi-platform & Multi-Browser
  • Using private profile for safety
  • Cross-platform WebView

GPT

Ask AI Any Question About the Go-WebUI

WebUI GPT - Go

Installation

Note

Until the next stable release it is recommended to use go-webui's latest development version.

The WebUI C library is vendored into this repository at v2/webui/ as a git subtree, so it ships with the Go module. There is no extra setup step and no submodule to initialize — a plain go get is enough.

  • As Go module

    go get github.com/webui-dev/go-webui/v2@main
    
  • As git submodule of your project

    The instructions below set up go-webui in a modules subdirectory of a go project.

    go-project
    ├── modules
    │   └── go-webui
    ├── ...
    └── go.mod
    

    Add and init the submodule

    git submodule add https://github.com/webui-dev/go-webui.git modules/go-webui
    
    git submodule update --init --filter=blob:none
    

    replace the path accordingly in the go.mod file.

    require github.com/webui-dev/go-webui/v2 v2.5.3
    
    replace github.com/webui-dev/go-webui/v2 v2.5.3 => ./modules/go-webui/v2
    
  • As git clone - for development and contribution purposes

    The command below retrieves go-webui as a lightweight, filtered clone.

    git clone --filter=blob:none https://github.com/webui-dev/go-webui.git
    
  • Updating the vendored WebUI C library

    Maintainers pull the latest WebUI nightly into the subtree with:

    git subtree pull --prefix=v2/webui https://github.com/webui-dev/webui.git nightly --squash -m "Update WebUI to nightly"
    

Usage

Example

<!-- index.html -->
<!doctype html>
<html>
   <head>
      <script src="webui.js"></script>
   </head>
   <body>
      <button onclick="test();">Test Go-WebUI</button>
      <script>
         async function test() {
            // Call a Go function.
            const result = await myGoFunction('Hello From JavaScript');
            alert(result); // "Hello From Go"
         }
      </script>
   </body>
</html>
// main.go
package main

import (
	"fmt"

	ui "github.com/webui-dev/go-webui/v2"
)

func myGoFunction(e ui.Event) string {
   // Get first argument
	name, _ := ui.GetArg[string](e)
	fmt.Printf("JavaScript sent: %s\n", name) // Hello From JavaScript
   // Return a response to JavaScript
	response := fmt.Sprintf("Hello From Go")
	return response
}

func main() {
	// Create a window.
	w := ui.NewWindow()
	// Bind a Go function.
	ui.Bind(w, "myGoFunction", myGoFunction)
	// Show frontend.
	w.Show("index.html")
	// Wait until all windows get closed.
	ui.Wait()
}

Find more examples in the examples/ directory.

Documentation

Enable TLS/SSL

Enable WebUI's security layer by adding the webui_tls build tag.

go run -tags webui_tls <path>

Debugging

To use WebUI's debug build, add the webui_log build tag. E.g.:

go run -tags webui_log minimal.go

UI & The Web Technologies

Borislav Stanimirov discusses using HTML5 in the web browser as GUI at the C++ Conference 2019 (YouTube).

CPPCon

Web application UI design is not just about how a product looks but how it works. Using web technologies in your UI makes your product modern and professional, And a well-designed web application will help you make a solid first impression on potential customers. Great web application design also assists you in nurturing leads and increasing conversions. In addition, it makes navigating and using your web app easier for your users.

Why Use Web Browsers?

Today's web browsers have everything a modern UI needs. Web browsers are very sophisticated and optimized. Therefore, using it as a GUI will be an excellent choice. While old legacy GUI lib is complex and outdated, a WebView-based app is still an option. However, a WebView needs a huge SDK to build and many dependencies to run, and it can only provide some features like a real web browser. That is why WebUI uses real web browsers to give you full features of comprehensive web technologies while keeping your software lightweight and portable.

How Does it Work?

Diagram

Think of WebUI like a WebView controller, but instead of embedding the WebView controller in your program, which makes the final program big in size, and non-portable as it needs the WebView runtimes. Instead, by using WebUI, you use a tiny static/dynamic library to run any installed web browser and use it as GUI, which makes your program small, fast, and portable. All it needs is a web browser.

Runtime Dependencies Comparison

WebViewQtWebUI
Runtime Dependencies on WindowsWebView2QtCore, QtGui, QtWidgetsA Web Browser
Runtime Dependencies on LinuxGTK3, WebKitGTKQtCore, QtGui, QtWidgetsA Web Browser
Runtime Dependencies on macOSCocoa, WebKitQtCore, QtGui, QtWidgetsA Web Browser

Wrappers

Languagev2.4.x APIv2.5.x APILink
Python✔️not completePython-WebUI
Go✔️not completeGo-WebUI
Zig✔️not completeZig-WebUI
Nim✔️not completeNim-WebUI
V✔️not completeV-WebUI
Rustnot completenot completeRust-WebUI
TS / JS (Deno)✔️not completeDeno-WebUI
TS / JS (Bun)not completenot completeBun-WebUI
Swiftnot completenot completeSwift-WebUI
Odinnot completenot completeOdin-WebUI
Pascalnot completenot completePascal-WebUI
Purebasicnot completenot completePurebasic-WebUI
-
Common Lispnot completenot completecl-webui
Delphinot completenot completeWebUI4Delphi
C#not completenot completeWebUI4CSharp
WebUI.NETnot completenot completeWebUI.NET
QuickJSnot completenot completeQuickUI
PHPnot completenot completePHPWebUiComposer

Supported Web Browsers

BrowserWindowsmacOSLinux
Mozilla Firefox✔️✔️✔️
Google Chrome✔️✔️✔️
Microsoft Edge✔️✔️✔️
Chromium✔️✔️✔️
Yandex✔️✔️✔️
Brave✔️✔️✔️
Vivaldi✔️✔️✔️
Epic✔️✔️not available
Apple Safarinot availablecoming soonnot available
Operacoming sooncoming sooncoming soon

Supported WebView

WebViewStatus
Windows WebView2✔️
Linux GTK WebView✔️
macOS WKWebView✔️

License

Licensed under the MIT License.

Stargazers

Stargazers repo roster for @webui-dev/go-webui