npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ergenekon/cli

v0.4.1

Published

ERGENEKON CLI — inspect, export, and manage distributed system recordings

Readme

@ergenekon/cli

ERGENEKON CLI — inspect, export, and live-watch distributed system recordings from your terminal

npm License

A beautiful ANSI-colored CLI for working with ERGENEKON recordings. List sessions, inspect event timelines, visualize distributed traces, export to binary format, and live-tail new recordings — all without leaving your terminal.

Install

npm install -g @ergenekon/cli
# or use npx
npx @ergenekon/cli sessions

Commands

paradox sessions               List all recorded sessions
paradox inspect <sessionId>    Show detailed session info + event breakdown
paradox timeline <sessionId>   Print ASCII event timeline with timing
paradox trace <traceId>        Visualize distributed trace across services
paradox export <id> [file]     Export session (.json or .paradox.bin)
paradox import <file>          Import session into collector
paradox stats                  Show collector statistics
paradox watch                  Live-tail new recordings (polls every 2s)
paradox health                 Check collector connectivity
paradox help                   Show help

Examples

# List all sessions
paradox sessions

# 📼 Recorded Sessions (32)
# ID                           Service            Events   Duration   Error  Time
# ─────────────────────────────────────────────────────────────────────────────
# 01HWXYZ...                   order-service      59       23ms       ✓      4/9/2026...

# Inspect a session
paradox inspect 01HWXYZ...

# ⏱ Timeline — see exactly when each event fired
paradox timeline 01HWXYZ...

#   000   +0ms  ● http_request_in      POST /api/orders
#   001   +1ms  ● timestamp            Date.now()
#   002   +1ms  ● random               Math.random()
#   003   +2ms  ● http_request_out     GET http://user-svc/api/users/1
#   004  +18ms  ● http_response_in     200 GET http://user-svc/api/users/1
#   005  +19ms  ● db_query             SELECT * FROM orders WHERE ...
#   ...

# See distributed trace across 2 services
paradox trace abc123def456...

# 🔗 Distributed Trace
#   order-service    ╠══════════════╣ 23ms (59 events)
#   user-service       ╠═════╣ 8ms (21 events)

# Export to compact binary
paradox export 01HWXYZ... recording.paradox.bin
# ✓ Exported (420 bytes, 24% smaller than JSON)

# Live-tail new recordings
paradox watch
# 👀 Watching for new recordings...
#   NEW 12:35:48 order-service — 59 events, 23ms
#   NEW 12:35:49 user-service — 21 events, 8ms

Configuration

# Point to a non-default collector
ERGENEKON_COLLECTOR_URL=http://staging:4380 paradox sessions

Part of ERGENEKON Engine

| Package | Description | |---------|-------------| | @ergenekon/core | Shared types, HLC clock, ULID | | @ergenekon/probe | Express middleware — records every request | | @ergenekon/collector | Ingestion server — stores recordings | | @ergenekon/replay | Replay engine — deterministic re-execution | | @ergenekon/cli | ← You are here |

License

Business Source License 1.1 — free for non-production use.