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

a2ui-catalog

v1.0.0

Published

Reusable A2UI component catalog, renderer, and runtime — drop into any React project

Readme

@a2ui/catalog

Standalone A2UI component catalog and renderer. Drop into any React + Tailwind project.

Install

# from npm (once published)
npm install @a2ui/catalog

# or local path during development
npm install file:../path/to/packages/a2ui-catalog

Peer dependencies your project must have:

npm install react lucide-react tailwind-merge clsx zustand

Usage in a new project

1. Create your store

Your store must satisfy the A2UIStoreSlice shape:

// src/store/a2uiStore.ts
import { create } from "zustand";
import { setPointer, validateMessage } from "@a2ui/catalog";
import type { A2UIStoreSlice, SurfaceState, A2UIMessage, A2UIComponent } from "@a2ui/catalog";

export const useA2UIStore = create<A2UIStoreSlice>((set, get) => ({
  surfaces: {},
  canvasError: null,
  setError: (msg) => set({ canvasError: msg }),
  patchData: (surfaceId, path, value) => {
    const s = get().surfaces[surfaceId];
    if (!s) return;
    const next = setPointer(structuredClone(s.dataModel), path, value) as Record<string, unknown>;
    set({ surfaces: { ...get().surfaces, [surfaceId]: { ...s, dataModel: next } } });
  },
  applyMessage: (raw) => {
    const msg = raw as Record<string, unknown>;
    try { validateMessage(msg as A2UIMessage); } catch (e) {
      set({ canvasError: e instanceof Error ? e.message : String(e) });
      return;
    }
    if ("createSurface" in msg) {
      const body = msg.createSurface as { surfaceId: string; components?: A2UIComponent[]; dataModel?: Record<string, unknown> };
      const components: Record<string, A2UIComponent> = {};
      for (const c of body.components || []) components[c.id] = c;
      set({ surfaces: { [body.surfaceId]: { catalog: "AppCatalog", components, dataModel: body.dataModel || {}, status: "creating" } } });
    }
    if ("updateComponents" in msg) {
      const body = msg.updateComponents as { surfaceId: string; components: A2UIComponent[] };
      const s = get().surfaces[body.surfaceId];
      if (!s) return;
      const components = { ...s.components };
      for (const c of body.components) components[c.id] = c;
      set({ surfaces: { ...get().surfaces, [body.surfaceId]: { ...s, components, status: "ready" } } });
    }
    if ("updateDataModel" in msg) {
      const body = msg.updateDataModel as { surfaceId: string; path?: string; value: unknown };
      const s = get().surfaces[body.surfaceId];
      if (!s) return;
      const next = setPointer(s.dataModel, body.path || "/", body.value) as Record<string, unknown>;
      set({ surfaces: { ...get().surfaces, [body.surfaceId]: { ...s, dataModel: next, status: "ready" } } });
    }
    if ("deleteSurface" in msg) {
      const { surfaceId } = msg.deleteSurface as { surfaceId: string };
      const surfaces = { ...get().surfaces };
      delete surfaces[surfaceId];
      set({ surfaces });
    }
  },
}));

2. Render

// src/App.tsx
import { A2UIRenderer } from "@a2ui/catalog";
import { useA2UIStore } from "./store/a2uiStore";

export default function App() {
  return (
    <A2UIRenderer
      surfaceId="main"
      useStore={useA2UIStore}
      apiBase="http://localhost:8000"  // your backend URL
    />
  );
}

3. Feed it SSE messages

const es = new EventSource("http://localhost:8000/api/stream");
es.onmessage = (e) => {
  const msg = JSON.parse(e.data);
  useA2UIStore.getState().applyMessage(msg);
};

That's it. The renderer handles everything else.

What's in the package

| Export | What it is | |---|---| | A2UIRenderer | The main renderer component | | A2UIStoreSlice | TypeScript type your store must implement | | AppCatalog | The component registry map | | validateMessage | Validates incoming A2UI messages | | getPointer / setPointer | JSON Pointer utilities | | All components | ItemCard, MetricCard, Chart, WeatherCard, etc. |

Adding your own components

// extend the catalog after import
import { AppCatalog } from "@a2ui/catalog";
import { MyCustomCard } from "./MyCustomCard";

AppCatalog["MyCustomCard"] = { component: MyCustomCard };