webui/README.md

99 lines
4.9 KiB
Markdown
Raw Normal View History

2022-10-19 22:14:22 -03:00
# WebUI
2021-03-20 19:53:42 -03:00
[![Website](https://img.shields.io/circleci/project/github/badges/shields/master?style=for-the-badge)](https://github.com/alifcommunity/webui) [![Website](https://img.shields.io/github/issues/alifcommunity/webui.svg?branch=master&style=for-the-badge&url=https://google.com)](https://github.com/alifcommunity/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
> 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
![ScreenShot](screenshot.png)
2021-03-20 19:53:42 -03: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
- Multi-platform & Multi-Browser
2022-10-30 15:29:10 -04:00
- Using private profile for safety
## 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
![ScreenShot](webui_diagram.png)
| | WebView | Qt | WebUI |
| ------ | ------ | ------ | ------ |
| 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
## 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)
- [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
| 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 |
| ------ | ------ | ------ |
| 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) |
| Nim | ✔️ | [neroist/webui](https://github.com/neroist/webui) |
2021-03-20 19:53:42 -03:00
### License
> GNU General Public License v3.0
2022-10-20 23:50:17 -03:00
### Stargazers
[![Stargazers repo roster for @alifcommunity/webui](https://reporoster.com/stars/alifcommunity/webui)](https://github.com/alifcommunity/webui/stargazers)