2022-10-19 22:14:22 -03:00
# WebUI
2021-03-20 19:53:42 -03:00
2022-11-01 00:26:09 -04:00
[](https://github.com/alifcommunity/webui) [](https://github.com/alifcommunity/webui/issues) [](https://webui.me/)
2021-03-20 19:53:42 -03:00
2022-11-01 00:26:09 -04:00
> Use any web browser as GUI, with your preferred language in the backend, and HTML/JS/TS/CSS in the frontend.
2021-03-20 19:53:42 -03:00
2022-10-19 22:14:22 -03:00

2021-03-20 19:53:42 -03:00
2022-11-01 00:26:09 -04:00
> :warning: **Notice**:
>
> * WebUI it's not a web-server solution or a framework, but it's an easy-embeddable tool to use any installed web browser as a user interface.
>
> * We are currently writing documentation.
>
> * WebUI is not ready yet for production release.
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 library*)
- Lightweight (*~160 Kb using TCC*) & Small memory footprint
- Fast WS binary communication (*App--WebUI--Browser*)
2022-09-24 20:34:28 -03:00
- One header file
2022-10-29 21:41:20 -04:00
- Multi-platform & Multi-Browser
2022-10-30 15:29:10 -04:00
- Using private profile for safety
2022-11-02 21:43:48 -04:00
## UI & The Web Technologies
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 Browser?
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.
2022-10-30 15:29:10 -04:00
## Comparison

| | WebView | Qt | WebUI |
| ------ | ------ | ------ | ------ |
2022-11-01 00:26:09 -04:00
| Dependencies on Windows | *Windows APIs, WebView2* | *QtCore, QtGui, QtWidgets* | *No need* |
| Dependencies on Linux | *GTK3, WebKitGTK* | *QtCore, QtGui, QtWidgets* | *No need* |
| Dependencies on macOS | *Cocoa, WebKit* | *QtCore, QtGui, QtWidgets* | *No need* |
2021-03-20 19:53:42 -03:00
2022-11-07 23:33:03 -05:00
## Documentation
- [Online Documentation ](https://webui.me/docs/ )
2022-09-29 13:46:24 -03:00
## Build
- [Windows ](https://github.com/alifcommunity/webui/tree/main/build/Windows )
2022-10-30 15:29:10 -04:00
- [Linux ](https://github.com/alifcommunity/webui/tree/main/build/Linux )
2022-09-29 13:46:24 -03:00
## Examples
- [C ](https://github.com/alifcommunity/webui/tree/main/examples/C )
2022-10-21 22:15:25 -04:00
- [C++ ](https://github.com/alifcommunity/webui/tree/main/examples/C++ )
2022-09-29 13:46:24 -03:00
- [Python ](https://github.com/alifcommunity/webui/tree/main/examples/Python )
- [TypeScript / JavaScript ](https://github.com/alifcommunity/webui/tree/main/examples/TypeScript )
2022-10-19 22:14:22 -03:00
- [Go ](https://github.com/alifcommunity/webui/tree/main/examples/Go/hello_world )
- [Rust ](https://github.com/alifcommunity/webui/tree/main/examples/Rust/hello_world )
2023-03-12 08:25:29 -04:00
- [V - malisipi/vwebui ](https://github.com/malisipi/vwebui/tree/main/examples )
- [Nim - neroist/webui ](https://github.com/neroist/webui/tree/main/examples )
2022-11-05 16:01:27 +03:00
2022-09-29 13:46:24 -03:00
## Supported Browser
2021-03-20 19:53:42 -03:00
2022-10-07 23:32:30 +03:00
| OS | Browser | Status |
2021-03-20 19:53:42 -03:00
| ------ | ------ | ------ |
2022-09-24 20:34:28 -03:00
| Windows | Firefox | ✔️ |
| Windows | Chrome | ✔️ |
| Windows | Edge | ✔️ |
2022-10-24 23:41:34 -03:00
| Linux | Firefox | ✔️ |
| Linux | Chrome | ✔️ |
2022-09-24 20:34:28 -03:00
| macOS | Firefox | *coming soon* |
| macOS | Chrome | *coming soon* |
| macOS | Safari | *coming soon* |
2022-09-29 13:46:24 -03:00
## Supported Language
2022-11-01 00:59:23 -04:00
| Language | Status | Link |
| ------ | ------ | ------ |
2022-11-07 23:33:03 -05:00
| C | ✔️ | [examples/C ](https://github.com/alifcommunity/webui/tree/main/examples/C ) |
| C++ | ✔️ | [examples/C++ ](https://github.com/alifcommunity/webui/tree/main/examples/C%2B%2B ) |
| Python | ✔️ | [examples/Python ](https://github.com/alifcommunity/webui/tree/main/examples/Python ) |
| JavaScript | ✔️ | [examples/TypeScript/Nodejs ](https://github.com/alifcommunity/webui/tree/main/examples/TypeScript/Nodejs ) |
| TypeScript | ✔️ | [examples/TypeScript/Deno ](https://github.com/alifcommunity/webui/tree/main/examples/TypeScript/Deno ) |
| Go | ✔️ | [examples/Go ](https://github.com/alifcommunity/webui/tree/main/examples/Go ) |
| Rust | ✔️ | [examples/Rust ](https://github.com/alifcommunity/webui/tree/main/examples/Rust ) |
2022-11-05 15:58:51 +03:00
| V | ✔️ | [malisipi/vwebui ](https://github.com/malisipi/vwebui ) |
2023-03-12 08:25:29 -04:00
| Nim | ✔️ | [neroist/webui ](https://github.com/neroist/webui ) |
2021-03-20 19:53:42 -03:00
### License
2022-11-01 00:26:09 -04:00
> GNU General Public License v3.0
2022-10-20 23:50:17 -03:00
### Stargazers
[](https://github.com/alifcommunity/webui/stargazers)