webui/README.md

161 lines
6.4 KiB
Markdown
Raw Normal View History

<div align="center">
![Logo](https://github.com/webui-dev/webui/assets/34311583/c92e712f-0698-486a-a460-d4acea28a4f8)
2023-08-19 17:49:08 -04:00
# WebUI v2.4.0
2021-03-20 19:53:42 -03:00
2023-07-24 20:29:59 +02:00
[![BuildStatus](https://img.shields.io/circleci/project/github/badges/shields/master?style=for-the-badge)](https://github.com/webui-dev/webui/actions?query=branch%3Amain) [![Issues](https://img.shields.io/github/issues/webui-dev/webui.svg?branch=master&style=for-the-badge&url=https://google.com)](https://github.com/webui-dev/webui/issues) [![Website](https://img.shields.io/website?label=webui.me&style=for-the-badge&url=https://google.com)](https://webui.me/)
2021-03-20 19:53:42 -03:00
2023-08-22 04:20:17 +02:00
> 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.
2021-03-20 19:53:42 -03:00
![Screenshot](https://github.com/webui-dev/webui/assets/34311583/57992ef1-4f7f-4d60-8045-7b07df4088c6)
2021-03-20 19:53:42 -03:00
2023-08-22 04:20:17 +02:00
</div>
2023-04-24 22:11:31 -04:00
## Download
- [Latest Stable Release](https://github.com/webui-dev/webui/releases)
2023-09-11 23:33:29 -04:00
- [Nightly Build](https://github.com/webui-dev/webui/releases/tag/nightly)
## Contents
- [Features](#features)
- [Showcase](#showcase)
- [UI & The Web Technologies](#ui--the-web-technologies)
- [Documentation](#documentation)
- [Build](#build)
- [Examples](#examples)
- [Wrappers](#wrappers)
- [Supported Web Browsers](#supported-web-browsers)
- [License](#license)
2021-03-20 19:53:42 -03:00
## Features
2022-10-30 15:29:10 -04:00
- Written in Pure C
- Fully Independent (*No need for any third-party runtimes*)
2023-09-06 14:52:59 +02:00
- Lightweight ~200 Kb & Small memory footprint
- Fast binary communication protocol between WebUI and the browser (*Instead of JSON*)
2022-09-24 20:34:28 -03:00
- One header file
- Multi-platform & Multi-Browser
2022-10-30 15:29:10 -04:00
- Using private profile for safety
## Showcase
2023-09-12 04:23:19 +02:00
This [text editor](https://github.com/webui-dev/webui/tree/main/examples/C/text-editor) is a lightweight and portable example written in C using WebUI as the GUI library.
<div align="center">
2023-07-24 23:10:50 +02:00
![Example](https://github.com/webui-dev/webui/assets/34311583/c1ccf29c-806a-4742-bfd7-a3dc30cab70b)
</div>
## UI & The Web Technologies
[Borislav Stanimirov](https://ibob.bg/) discusses using HTML5 in the web browser as GUI at the [C++ Conference 2019 (*YouTube*)](https://www.youtube.com/watch?v=bbbcZd4cuxg).
<!-- <div align="center">
<a href="https://www.youtube.com/watch?v=bbbcZd4cuxg"><img src="https://img.youtube.com/vi/bbbcZd4cuxg/0.jpg" alt="Embrace Modern Technology: Using HTML 5 for GUI in C++ - Borislav Stanimirov - CppCon 2019"></a>
</div> -->
<div align="center">
![CPPCon](https://github.com/webui-dev/webui/assets/34311583/4e830caa-4ca0-44ff-825f-7cd6d94083c8)
</div>
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?
2022-10-30 15:29:10 -04:00
<div align="center">
![Diagram](https://github.com/ttytm/webui/assets/34311583/dbde3573-3161-421e-925c-392a39f45ab3)
2022-10-30 15:29:10 -04:00
</div>
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
2022-10-30 15:29:10 -04:00
| | 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*** |
2021-03-20 19:53:42 -03:00
## Documentation
2023-08-22 04:20:17 +02:00
> **Note**
> We are currently writing documentation.
2023-04-24 22:11:31 -04:00
- [Online Documentation - C](https://webui.me/docs/#/c_api)
2023-04-25 23:33:56 -04:00
- [Online Documentation - C++](https://webui.me/docs/#/cpp_api)
2022-09-29 13:46:24 -03:00
## Build
2023-08-21 18:22:40 +02:00
- **Windows**
```powershell
# GCC
mingw32-make
2023-08-21 18:22:40 +02:00
# MSVC
nmake -f Makefile.nmake
2023-08-21 18:22:40 +02:00
```
- **Linux**
```sh
# GCC
make
2023-08-21 18:22:40 +02:00
# Clang
make CC=clang
2023-08-21 18:22:40 +02:00
```
- **macOS**
```sh
make
```
2022-09-29 13:46:24 -03:00
## Examples
- [C](https://github.com/webui-dev/webui/tree/main/examples/C)
- [C++](https://github.com/webui-dev/webui/tree/main/examples/C++)
## Wrappers
2022-09-29 13:46:24 -03:00
2022-11-01 00:59:23 -04:00
| Language | Status | Link |
| ------ | ------ | ------ |
| Go | ✔️ | [Go-WebUI](https://github.com/webui-dev/go-webui) |
2023-08-22 20:41:20 +02:00
| Nim | ✔️ | [Nim-WebUI](https://github.com/webui-dev/nim-webui) |
| Pascal | ✔️ | [Pascal-WebUI](https://github.com/webui-dev/pascal-webui) |
| Python | ✔️ | [Python-WebUI](https://github.com/webui-dev/python-webui) |
| Rust | *not complete* | [Rust-WebUI](https://github.com/webui-dev/rust-webui) |
2023-08-22 20:41:20 +02:00
| TypeScript / JavaScript | ✔️ | [Deno-WebUI](https://github.com/webui-dev/deno-webui) |
| V | ✔️ | [V-WebUI](https://github.com/webui-dev/v-webui) |
| Zig | *not complete* | [Zig-WebUI](https://github.com/webui-dev/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* |
2021-03-20 19:53:42 -03:00
### License
> Licensed under MIT License.
2022-10-20 23:50:17 -03:00
### Stargazers
[![Stargazers repo roster for @webui-dev/webui](https://reporoster.com/stars/webui-dev/webui)](https://github.com/webui-dev/webui/stargazers)