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

@savvifi/meridian-mui-kit

v0.7.0

Published

The MUI ComponentKit for the meridian React renderer — paints meridian.ui.v1 PanelDescriptors / ViewDescriptors with MUI (its own table + form components, with CLIENT/OFFSET/CURSOR pagination) over the meridian-web-react WebRenderer seam. Standalone — no

Readme

@savvifi/meridian-mui-kit

The MUI ComponentKit for the meridian React renderer. It paints framework-neutral meridian.ui.v1 PanelDescriptors and ViewDescriptors with MUI — its own table + form components (with CLIENT/OFFSET/CURSOR pagination) — over the @savvifi/meridian-web-react WebRenderer seam.

It is one implementation of the ComponentKit interface, a peer of htmlKit and shadcnKit: the kit-agnostic PanelRenderer / ViewRenderer dispatch the descriptor shapes to these components, so a single ViewDescriptor renders here as MUI instead of plain HTML.

Standalone. The kit owns its components — MeridianTable / MeridianForm, lifted and generalized from the aion @aion/ui patterns (the MUI table + pagination, the typed form fields) — so it has no @aion/ui dependency. Any meridian host can reuse the patterns, not just aion/studio. Its only runtime peers are React, MUI, and the meridian packages.

How it fits

ViewDescriptor / PanelDescriptor  (meridian-schemas, neutral protos)
        │
        ▼
ViewRenderer / PanelRenderer      (@savvifi/meridian-web-react, kit-agnostic)
        │  dispatches each shape to →
        ▼
muiKit                            (this package: Table→MeridianTable, Form→MeridianForm, …)
        │  built on →
        ▼
@mui/material                     (Table, TablePagination, TextField, …)

Usage

import { MeridianMuiProvider } from "@savvifi/meridian-mui-kit";
import { ViewRenderer } from "@savvifi/meridian-web-react";

<MeridianMuiProvider invoker={rpcInvoker} theme={skin} adhoc={handlers}>
  <ViewRenderer view={viewDescriptor} />
</MeridianMuiProvider>;

MeridianMuiProvider sets up one MUI ThemeProvider (bound to the meridian Theme) + CssBaseline over the subtree, then a MeridianProvider wired to muiKit — so view/slot actions are themed too.

For a single panel (no layout tier), use the kit as a WebRenderer:

import { reactWebRenderer } from "@savvifi/meridian-web-react";
import { muiKit } from "@savvifi/meridian-mui-kit";

const renderer = reactWebRenderer(muiKit);
const handle = renderer.mount({ container, descriptor, theme, invoker, adhoc });

Exports

  • muiKit — the ComponentKit (Table · Form · Prompt · Lro · Fallback · ActionBar · Chrome · themeToStyle). (aionMuiKit is a deprecated alias.)
  • MeridianMuiProvider — the one-line host wrapper (theme + provider + kit).
  • MeridianTable / MeridianForm — the standalone MUI components, reusable directly.
  • themeProtoToThemeConfig / createMuiThemeFromConfig / themeProtoToMuiTheme — bind a meridian Theme to MUI.

Shape → component

| meridian shape | rendered with | | --- | --- | | TablePanel | MeridianTable (columns from TableColumn, rows from the populate RPC via usePagedRows, MUI TablePagination) | | FormPanel | MeridianForm (READONLY → disabled card, EDIT → editable + submit RPC) | | PromptPanel | MeridianForm (standalone input collector) | | LroPanel | inputs form + a run button firing start | | Action (view/slot) | MUI Buttons (ActionBar) firing call via the invoker | | AdhocPanel | host-supplied handler (meridian-web-react adhoc registry) |

Pagination

The Table drives all three TablePanel.pagination modes through meridian-web-react's usePagedRows:

  • CLIENT — fetch once, paginate the rows locally (small lists).
  • OFFSET — re-fetch per page via offset/limit request fields + a total count.
  • CURSOR — cursor / next-cursor per page. aion's preferred paradigm (tRPC infinite-query shape: input { cursor }, output { items, nextCursor }).

Develop

pnpm install     # everything resolves from npmjs (React, MUI, emotion, meridian-*)
pnpm typecheck
pnpm test        # fast jsdom round-trip (inner loop): CLIENT/OFFSET/CURSOR pagination
pnpm build       # dist/ (tsc)

Real-browser tests + visual catalog (Bazel)

jsdom is the fast inner loop; the confidence loop runs in real, hermetic Chrome for Testing (rules_chrome + Playwright) — 0 tolerance for UI mishaps. One fixture harness (harness/entry.tsx, every primitive + layout) is esbuild-bundled and driven in the browser; the same fixtures produce the screenshot catalog, so the doc can never drift from what the kit renders.

bazel test  //:browser_test     # renders every fixture in real Chrome + asserts
                                #   real interactions: pagination clicks re-fetch
                                #   (offset + cursor), tabs switch, forms edit,
                                #   header-above-form ordering, actions render.
bazel build //:catalog_figures  # a labeled PNG per primitive/layout (build artifact)
bazel build //:catalog          # → bazel-bin/catalog.pdf — the visual catalog
                                #   (rules_tectonic), every primitive + layout.

FIXTURES in BUILD.bazel must match window.meridianHarness.list().