effect-devtui
v0.4.3
Published
Terminal UI for Effect DevTools
Maintainers
Readme
Effect DevTools TUI
A terminal user interface (TUI) for Effect DevTools. View traces, spans, metrics, and inspect your Effect applications directly from your terminal!
Built with [OpenTUI][OpenTUI] and inspired by the [Effect DevTools VS Code extension][Effect DevTools VS Code Extension], but with a more limited feature set focused on observability rather than debugging.
Installation
# Install as a dev dependency
npm i -d effect-devtui
# Or run directly with npmx
npmx effect-devtuiFeatures
Observability
- 🔍 Real-time Span Viewer - View and navigate span traces with an expandable tree structure
- 📊 Metrics Dashboard - Monitor counters, gauges, histograms, frequencies, and summaries
- 👥 Multi-Client Support - Connect multiple Effect applications simultaneously
Code Analysis & Fixing
- 🔧 Automatic Layer Fixer - Detect missing Effect service requirements and auto-generate layer composition code
- 🎯 Layer Analysis - Scan codebase for Layer definitions and resolve service dependencies
- 📋 Dependency Resolution - Handle transitive dependencies and multiple layer candidates
- ✨ Code Generation - Auto-apply fixes directly to source files with AST-aware transformations
General
- ⌨️ Keyboard Navigation - Vim-style navigation (j/k) with intuitive shortcuts
- 🎨 Split Panel Layout - Side-by-side view of data and detailed information
- 🚀 Lightweight - Runs in any terminal, no GUI required
Setup
To use Effect DevTools TUI with your Effect project, first install the required dependency:
npm i @effect/experimental
npm i -d effect-devtuiThen add the DevTools layer to your Effect application:
import { DevTools } from "@effect/experimental";
import { NodeRuntime, NodeSocket } from "@effect/platform-node";
import { Effect, Layer } from "effect";
const program = Effect.log("Hello!").pipe(
Effect.delay(2000),
Effect.withSpan("Hi", { attributes: { foo: "bar" } }),
Effect.forever,
);
program.pipe(Effect.provide(DevTools.layer()), NodeRuntime.runMain);Custom Server URL
If you need to connect to a different host or port:
const DevToolsLive = DevTools.layer("ws://your-host:34437");Docker Setup
When running your Effect app in Docker and connecting to the DevTools TUI on your host machine:
- Add an extra host to your
docker-compose.yml:
services:
effect-backend:
extra_hosts:
- host.docker.internal:host-gateway- Configure the DevTools layer to use the Docker host:
const DevToolsLive = DevTools.layer("ws://host.docker.internal:34437");OpenTelemetry Integration
If you're using @effect/opentelemetry, provide the DevTools layer before your tracing layers to ensure the tracer is patched correctly.
Comparison with VS Code Extension
This TUI complements the VS Code extension by focusing on observability and code analysis, while the extension provides debugging capabilities and IDE integration.
Related Projects
- Effect - The Effect TypeScript framework
- OpenTUI - Terminal UI framework
- Effect DevTools VS Code Extension - VS Code version
