Use any web browser or WebView as GUI, with your preferred language in the backend and HTML5 in the frontend, all in a lightweight portable lib.
Go to file
2023-09-07 07:10:05 +02:00
.github/workflows Fix missing webui in macOS artifacts 2023-08-31 22:06:33 +02:00
bridge Improve set_size and set_position 2023-08-29 21:12:45 -04:00
examples Use a single Makefile to build examples 2023-09-07 07:10:05 +02:00
include Change signed long to unsigned 2023-08-30 19:47:31 -04:00
src Socket Bind 127.0.0.1 2023-09-01 18:33:18 -04:00
.gitignore Remove build directory 2023-08-21 19:04:43 +02:00
LICENSE Correct Original Creator Name (LICENSE) 2023-07-17 16:36:45 -04:00
Makefile Remove TCC related code (#200) 2023-09-06 14:52:59 +02:00
Makefile.nmake Improve directory independency of Makefile Dir variables 2023-09-05 02:08:17 +02:00
README.md Remove TCC related code (#200) 2023-09-06 14:52:59 +02:00

Logo

WebUI v2.4.0

BuildStatus Issues Website

WebUI is not a web-server solution or a framework, but it allows you to use any web browser as a GUI, with your preferred language in the backend and HTML5 in the frontend. All in a lightweight portable lib.

Screenshot

Download

Contents

Features

  • Written in Pure C
  • Fully Independent (No need for any third-party runtimes)
  • Lightweight ~200 Kb & Small memory footprint
  • Fast binary communication protocol between WebUI and the browser (Instead of JSON)
  • One header file
  • Multi-platform & Multi-Browser
  • Using private profile for safety

Showcase

This text editor example is written in C using WebUI as the GUI library. The final executable is portable and has less than 1 MB in size (+html and css files).

Example

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

WebView Qt WebUI
Runtime Dependencies on Windows WebView2 QtCore, QtGui, QtWidgets A Web Browser
Runtime Dependencies on Linux GTK3, WebKitGTK QtCore, QtGui, QtWidgets A Web Browser
Runtime Dependencies on macOS Cocoa, WebKit QtCore, QtGui, QtWidgets A Web Browser

Documentation

Note

We are currently writing documentation.

Build

  • Windows
    # GCC
    mingw32-make
    
    # MSVC
    nmake -f Makefile.nmake
    
  • Linux
    # GCC
    make
    
    # Clang
    make COMPILER=clang
    
  • macOS
    make
    

Examples

Wrappers

Language Status Link
Go ✔️ Go-WebUI
Nim ✔️ Nim-WebUI
Pascal ✔️ Pascal-WebUI
Python ✔️ Python-WebUI
Rust not complete Rust-WebUI
TypeScript / JavaScript ✔️ Deno-WebUI
V ✔️ V-WebUI
Zig not complete Zig-WebUI

Supported Web Browsers

Browser Windows macOS Linux
Mozilla Firefox ✔️ ✔️ ✔️
Google Chrome ✔️ ✔️ ✔️
Microsoft Edge ✔️ ✔️ ✔️
Chromium ✔️ ✔️ ✔️
Yandex ✔️ ✔️ ✔️
Brave ✔️ ✔️ ✔️
Vivaldi ✔️ ✔️ ✔️
Epic ✔️ ✔️ not available
Apple Safari not available coming soon not available
Opera coming soon coming soon coming soon

License

Licensed under MIT License.

Stargazers

Stargazers repo roster for @webui-dev/webui