Open · execution visualization

Code becomes nodes, edges, and a runtime story you can follow.

Write Python or JavaScript, press run, and watch execution stream into a living graph. Scrub a timeline to replay any moment — deterministically — down to the variable.

Live
Streamed events
Replay
Deterministic
Graph
Node-first
main.py · runtimeStreaming
count
8
fibonacci(n)
return seq
seq
011
total
33
How it works

Three moves from source to a graph you can trust.

01

Write & run

Edit Python or JavaScript/TypeScript in a focused editor. One run opens a stream — no setup, no build step, no login.

02

Watch it assemble

Each value, call and collection becomes a node. Data flows in on cyan, execution flows out on amber.

03

Scrub & inspect

Drag the timeline and the whole surface rebuilds at that exact step — graph, console and variables in lockstep.

main.py
1def fibonacci(n):
2 seq = [0, 1]
3 while len(seq) < n:
4 seq.append(seq[-1] + seq[-2])
5 return seq
6
7numbers = fibonacci(8)
8total = sum(numbers)
execution graph
count
8
fibonacci
active
seq
0112
execdata
Capabilities

Built for the moment you ask “what just happened?”

Execution flow

Follow control as it moves — calls, branches and loops trace themselves across the graph as amber execution edges.

State inspection

Every variable, in every scope, at every step. Collections show their deltas: what was appended, sorted, removed.

Replay confidence

The timeline is the source of truth. Rewind to any step and the entire surface is rebuilt exactly as it was.

Pricing

Free to start. Keep going from ₹199 — or ₹10 for students.

The Free plan needs no card — 5 JavaScript runs a day, resets daily. Paid plans add Python & TypeScript, longer runs, and more, each starting with a 7-day Pro trial (cancel anytime). Billed in INR via Razorpay; students at partner colleges get a free first month, then ₹10/mo.

Free

₹0 forever
  • 5 runs per day (resets daily)
  • JavaScript only
  • Full visualizer + timeline scrubbing
  • No card required
Start free

Basic

₹199 /mo
  • Full visualizer + timeline scrubbing
  • Console & variable inspector
  • 180s runs · 256 MB · 2 concurrent
  • Unlimited daily runs (fair use)
Start 7-day trial

Student ₹10/mo

Free first month
  • Free first month, then ₹10/mo
  • Full visualizer + timeline scrubbing
  • 180s runs · 256 MB · 2 concurrent
  • Just sign in with your college email
See student plan

Student plan is for verified students at allowlisted colleges — eligibility is automatic once you sign in with your institutional email (no extra steps). Not listed? Ask us to add your college.

Stop reading stack traces. Watch your program run.

LiveFlow
TermsPrivacyContact© 2026 Manideep Kadambari & Kanishka Yadav