| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Web frontend for ECA — observe and control chat sessions from a browser via the ECA remote server.
Hosted at web.eca.dev and deployed automatically via GitHub Pages.
┌──────────────┐ REST + SSE ┌─────────────────┐ stdio JSON-RPC ┌────────┐ │ web.eca.dev │ ◄─────────────► │ ECA process │ ◄────────────────► │ Editor │ │ (browser) │ HTTP over LAN │ (embedded HTTP)│ │ │ └──────────────┘ └─────────────────┘ └────────┘
The web app is a thin shell around the shared webview UI (eca-webview/ git submodule) — the same chat UI used in VS Code and IntelliJ. A bridge layer (src/bridge/) fakes the editor environment by:
This means the chat UI, Redux store, and all components work identically across editors — only the transport layer differs.
All requests use Authorization: Bearer <token> headers — no cookies. SSE is consumed via fetch() + ReadableStream (not EventSource) to support custom auth headers.
git clone --recurse-submodules https://github.com/editor-code-assistant/eca-web.git
cd eca-web
npm install
npm run dev # Dev server on http://localhost:8080If you already cloned without --recurse-submodules:
git submodule update --initOther commands:
npm run build # Type-check + production build → dist/
npm run preview # Serve the production build locallyRun eca-web without Node.js:
docker run -p 8080:80 ghcr.io/editor-code-assistant/eca-webThen open http://localhost:8080.
For full remote configuration options (host, port, password, etc.), see the Remote Configuration docs.
ECA logs a URL like:
🔗 https://web.eca.dev?host=192.168.1.42:7888&token=a3f8b2...
Click it — the frontend auto-connects, strips the token from the URL, and saves the connection to localStorage.
Go to web.eca.dev, enter the host IP and password, and hit Discover & Connect — it scans ports 7777–7787 and connects to any running ECA sessions automatically.
Apache-2.0
| Back | FazBrowse Home | New Git URL |