Skip to main content

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 (gcc or clang)
  • Wails CLI (go install github.com/wailsapp/wails/v2/cmd/wails@latest)

Build & Run

For development with hot-reload:

The Interface

Studio uses a tri-pane layout:

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. Use Ctrl+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 a litejoin.yaml file. This file contains everything needed to run the pipeline standalone:
Studio embeds the LiteJoin engine directly — the Go backend runs the same code as the litejoin CLI binary. What you see in Studio is exactly what runs in production.

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.