LiteJoin Studio
LiteJoin Studio is a desktop application that wraps the LiteJoin streaming engine with a visual interface. Think of it as “Postman for Streaming” — add API sources, write SQL joins, see live results, and export a production-ready config file.Prerequisites
- Go 1.24+ with CGO enabled
- Node.js 18+
- A C compiler (
gccorclang) - Wails CLI (
go install github.com/wailsapp/wails/v2/cmd/wails@latest)
Build & Run
The Interface
Studio uses a tri-pane layout:| Pane | Purpose |
|---|---|
| Left sidebar | Lists all sources, joins, windows, and sinks. Green dots indicate live connections. |
| Top right | SQL editor with syntax highlighting, autocomplete, and window configuration controls. |
| Bottom right | Live results table — new rows slide in with a glow animation as data flows through your pipeline. |
Workflow
1. Add a Source
Click + Add API in the sidebar. Enter the API URL, authentication headers, poll interval, and key path. Studio immediately starts polling and shows raw data flowing in.2. Write SQL
In the SQL editor, write your join query. UseCtrl+Enter (or Cmd+Enter on Mac) to execute. The results pane updates in real-time as new data arrives.
3. Configure Windows (Optional)
Use the visual windowing toolbar above the editor to add time-based aggregations without writing complex SQL:- Select window type (Tumbling, Sliding, Session)
- Set the window size and slide interval
- Choose aggregation functions (COUNT, SUM, AVG, MAX, MIN)
4. Deploy
Click Deploy in the header to export your pipeline as alitejoin.yaml file. This file contains everything needed to run the pipeline standalone:
Features
API → Stream
Paste a REST API URL and see changes stream in within seconds. No webhook setup required.
Live SQL Preview
Write SQL joins and see results update in real-time as data flows through the pipeline.
Visual Windows
Configure tumbling, sliding, and session windows with visual controls — no manual SQL needed.
One-Click Export
Generate a production-ready
litejoin.yaml with a single click.