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

tx-mon-sdk

v0.1.0

Published

Read-only SDK for querying tx-monitor capture sessions from SQLite

Readme

tx-mon-sdk

Read-only Bun SDK for querying tx-monitor capture databases.

Use this from another dashboard or tool to triage timestamped events with nearby packet context — without running the tx-monitor HTTP server.

Requirements

  • Bun >= 1.0
  • A SQLite DB written by tx-monitor (default ~/.tx-monitor)

The SDK opens the database read-only and never runs migrations. Start tx-monitor with persistence enabled at least once so the schema exists.

Install

From this monorepo (workspace):

bun add tx-mon-sdk@workspace:*

Or depend on the package path / published version when available.

Quick start

import { openTxMon } from "tx-mon-sdk";

const tx = openTxMon(); // TXMON_DB or ~/.tx-monitor

const ctx = tx.contextAround(Date.parse("2026-07-20T18:00:00Z"), {
    windowMs: 30_000,
    limit: 200,
});

console.log(ctx.sessions, ctx.packets, ctx.summary);
tx.close();

API

| Method | Purpose | | --- | --- | | openTxMon({ dbPath? }) | Open read-only DB (dbPath / TXMON_DB / ~/.tx-monitor) | | findSessions({ from?, to?, mode?, q?, limit?, offset? }) | Sessions overlapping a time range | | getSession(id) | One session row | | queryPackets({ sessionId?, from?, to?, host?, port?, proto?, q?, limit?, offset? }) | Filtered packets (receivedAt window) | | summarize({ sessionId?, from?, to?, topN? }) | Proto / host / port tallies | | contextAround(eventAt, { windowMs?, sessionId?, limit?, topN? }) | Sessions + packets + summary around an event | | getMarkers(sessionId) | Entity markers for a session | | close() | Close the SQLite handle |

Schema table definitions are also exported from tx-mon-sdk/schema for apps that share the same Drizzle models.

Notes

  • Packet metadata can be sensitive; treat SDK results like local capture data.
  • Cross-session time queries may scan more rows than per-session lookups; keep windows tight for interactive triage.