Odin-WebUI

January 14, 2025 · View on GitHub

Logo

Odin-WebUI

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

Screenshot

Contents

Features

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

Installation

# Add odin-webui as a submodule to your project
git submodule add https://github.com/webui-dev/odin-webui.git webui

# Linux/MacOS
webui/setup.sh 

# Windows
webui/setup.ps1
toggle Full example creating a project and adding odin-webui as a submodule.
# Create your project directory
mkdir my_proj 

# Change Directory into the project Directory
cd my_proj

# Initialize the directory to be a git repository
git init

# Add odin-webui as a submodule to your project
git submodule add https://github.com/webui-dev/odin-webui.git webui

# Build the linkers used for the binding from the C library.
# Linux/MacOS
webui/setup.sh
# Windows
webui/setup.ps1 

# Create a file called 'main.odin' in your project directory. 
# Copy the minimal example code in the next step and paste into 'main.odin'.
# Run the example with the command: 'odin run main.odin -file'.

Minimal Example

// main.odin
package main

import ui "webui"

main :: proc() {
    my_window: uint = ui.new_window()
    ui.show(my_window, "<html> <script src=\"webui.js\"></script> Thanks for using WebUI! </html>")
    ui.wait()
}

More examples

Debugging

To use WebUI's debug build in your Odin-WebUI application, add the -debug switch. E.g.:

odin run examples/minimal.odin -file -debug

Documentation

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.0 APIv2.5.0 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

License

Licensed under the MIT License.

Stargazers

stargazers