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

@quantumwake/terminal-ux-dashboard-components

v0.1.32

Published

Dashboard, chart-builder and SQL-runner React components for the Alethic ISM apps. Capability-injected: the host wires the query/save/load/search fns. A full-capability host gets full CRUD; a read-only host that wires only theme + runQuery omits the logge

Downloads

620

Readme

@quantumwake/terminal-ux-dashboard-components

Dashboard, chart-builder and SQL-runner React components for the Alethic ISM apps.

These components are capability-injected: they never import a store or an API client. The host wires concrete functions (query / save / load / search / …) via <DashboardProvider>, and the components call them through useDashboard().

A full-capability host (the studio) wires every verb and gets full CRUD. A read-only host (a published viewer) provides only theme + runQuery (e.g. DuckDB-WASM), so the logged-in-only verbs — save, edit, load, search, AI analyze/refine — are simply not wired and their affordances disappear. One component tree, any number of hosts, differences injected.

Usage

import { DashboardProvider } from '@quantumwake/terminal-ux-dashboard-components';

// Full-capability host (studio): wire everything.
<DashboardProvider
  theme={theme}
  runQuery={(sql, stateId) => store.runStateFsQuery(sql, undefined, stateId)}
  saveDashboard={store.saveDashboard}
  listDashboards={store.listSavedDashboards}
  loadDashboard={store.loadDashboard}
  deleteDashboard={store.deleteSavedDashboard}
  analyzeDataset={store.analyzeStateFsDataset}
  refineDashboard={store.refineDashboard}
  removePanel={store.removeDashboardPanel}
>
  {/* ChartBuilder, DashboardRenderer, SqlConsole, DataExplorer */}
</DashboardProvider>

// Read-only host (viewer): theme + runQuery only.
<DashboardProvider theme={theme} runQuery={(sql, stateId) => runQuery(shareId, stateId!, sql)}>
  {/* same components, no save/edit/load affordances */}
</DashboardProvider>

runQuery(sql, stateId) must return { columns, rows }, executing sql against a view named data over the state's dataset (a full host might run it against a SQL service /query; a read-only host against DuckDB-WASM read_parquet).

Status

  • ✅ Capability contract (DashboardProvider / useDashboard / useCapabilities)
  • ✅ Pure utilities: sqlgen, chartStyle
  • ⏳ Components (landing in tranches): views/, SqlConsole, ChartBuilder, DashboardRenderer, DataExplorer

Value formatting (yFormat, formatBytes)

LineView, BarView and SparklineView accept a yFormat?: (value: number) => string prop that formats every numeric value rendered for the user — y-axis tick labels, hover/tooltip values, in-bar labels (BarView), and the latest-value readout (SparklineView). It's unset by default, so nothing changes for existing callers: ticks keep Number(value).toLocaleString() and the tooltip/label keep Nivo's own default formatting.

BarView's value axis follows layout — vertical puts it on the left, horizontal on the bottom — yFormat applies to whichever axis that is.

import { LineView, BarView, formatBytes } from '@quantumwake/terminal-ux-dashboard-components';

<LineView records={records} xColumn="t" yColumn="bytes_per_sec" yFormat={(v) => formatBytes(v, true)} />
<BarView records={records} groupColumn="host" valueColumn="bytes" yFormat={formatBytes} />

formatBytes(value, perSecond?) is the shared unit rule for byte-ish series: B under 1024, then KB/MB/GB/TB with one decimal place ("1.5 MB"), capped at TB. Pass perSecond: true to append /s for a throughput series ("2.0 GB/s").

Build

npm install
npm run build   # tsup → dist (esm + cjs + d.ts)
npm run lint    # tsc --noEmit
npm run test    # vitest run