webui/bridge/README.md
Hassan DRAGA 096b0cf836 WebUI Bridge
* Creation of the webui bridge folder
* Keeping the possibility of compiling webui by a simple C99 compiler only
* Replacing `xxd` by a simple python script
* Adding the readme
* From now, we will use the TypeScript version, Many thanks to @JOTSR
2023-08-18 15:50:31 -04:00

1.3 KiB

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
  • Run npm install esbuild
  • Run .\node_modules\.bin\esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=.\ .\webui_bridge.ts
  • Run python js2c.py

Linux

  • Install Python
  • Install Node.js
  • cd webui/bridge
  • Run npm install esbuild
  • Run ./node_modules/.bin/esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./ ./webui_bridge.ts
  • Run python js2c.py

macOS

  • Install Python
  • Install Node.js
  • cd webui/bridge
  • Run npm install esbuild
  • Run ./node_modules/.bin/esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./ ./webui_bridge.ts
  • Run python js2c.py