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

@omni-oss/perf-dashboard

v0.1.0

Published

Graphs and dashboards for omni task-bench performance comparisons

Readme

@omni-oss/perf-dashboard

Graphs and dashboards for @omni-oss/task-bench performance-comparison data. Turns the benchmark artifacts published by publish-perf-comparison.yaml into a single self-contained report with two views:

  • Cross-tool — one omni version vs. the other runners in the same runs.
  • Version history — omni over its own releases, on a normalized slice (Linux · full preset · resource runs); ineligible versions are dropped and shown in a mandatory exclusion panel.

See DESIGN.md for the full architecture. The pipeline is source → normalize → analyze → Chart IR → render, with pluggable data sources and renderers, and a generic, domain-agnostic output IR.

CLI

# Full report (all views) from the published GitHub data → self-contained HTML.
perf-dashboard report \
  --source github --repo omni-oss/performance-comparison \
  --renderer html --out ./site

# From local `task-bench suite --json` output (single file or a folder of runs).
perf-dashboard report --source local-fs --path ./data.json --renderer markdown --out .

# Narrow to one view and spotlight a specific omni version.
perf-dashboard report --source github --repo omni-oss/performance-comparison \
  --views cross-tool --spotlight 0.4.1 --renderer html --out ./site

# Inspect the normalized data (no analysis) for debugging.
perf-dashboard inspect --path ./data.json

Sources: local-fs (--path), github (--repo owner/repo, optional --ref, --token/GITHUB_TOKEN). Renderers: json, markdown, html.

Library

import {
  GitHubDataSource,
  HtmlRenderer,
  run,
} from "@omni-oss/perf-dashboard";

const output = await run({
  source: new GitHubDataSource({ owner: "omni-oss", repo: "performance-comparison" }),
  renderer: new HtmlRenderer(),
});
// output.files -> [{ path: "index.html", content, mime }]

composeReport(runs, opts) is the pure core (no IO) if you want to bring your own source/renderer; it returns a Report — a serializable description of every view, chart, and data point.

Configuration

  • PERF_DASHBOARD_SCENARIO_ALIASES — JSON object of { alias: canonical } scenario-name pairs, merged over the checked-in constant map (env wins). Used by the version-history view to bridge scenario renames across releases.