mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00

- For same reason, data over 97.6Kb (100000 bytes) may have data loss because of Civetweb has an issue. That's make the webui-protocol-header had incorrect data size so it crashes (over flow) if user access the most significant byte. However, WebUI won't crash now. But we should report this to Civetweb.
WebUI Bridge
The WebUI Bridge connects the UI (Web Browser) with the backend application through WebSocket. This bridge is written in TypeScript, and it needs to be transpiled to JavaScript using ESBuild to produce webui_bridge.js
, then converted to C99 header using the Python script js2c.py
to generate webui_bridge.h
.
Windows
- Install Python
- Install Node.js
- cd
webui\bridge
npm install esbuild
.\node_modules\.bin\esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=.\ .\webui_bridge.ts
python js2c.py
Windows PowerShell
- cd
webui\bridge
./build.ps1
- If you get running scripts is disabled on this
system error. Then run
Set-ExecutionPolicy RemoteSigned
to enable script execution. After done, you can roll back by runningSet-ExecutionPolicy Restricted
Linux
- Install Python
- Install Node.js
- cd
webui/bridge
npm install esbuild
./node_modules/.bin/esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./ ./webui_bridge.ts
python js2c.py
Linux Bash
- cd
webui\bridge
- sh
./build.sh
macOS
- Install Python
- Install Node.js
- cd
webui/bridge
npm install esbuild
./node_modules/.bin/esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./ ./webui_bridge.ts
python js2c.py
macOS Bash
- cd
webui\bridge
- sh
./build.sh