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

@kozou/ui-core

v1.14.0

Published

Kozou framework-agnostic UI core: the read-path logic (DataAdapter implementations, list params, view columns, cell formatting, FK label resolution, resource ids, schema/FK caches) that turns a SchemaContext + DataAdapter into the data a reference Admin U

Readme

@kozou/ui-core

Framework-agnostic UI logic for Kozou reference Admin UIs.

Kozou compiles a PostgreSQL schema (DDL + COMMENT) into a SchemaContext and talks to a backend through the DataAdapter interface (both defined in @kozou/core). This package holds the read-path logic that turns those two inputs into the data a list/detail view renders, with no Svelte, SvelteKit, React, or any UI-framework runtime dependency.

It exists so more than one UI can share the exact same behaviour instead of re-implementing (and re-acquiring the bugs of) list parsing, FK label resolution, composite-key handling, and so on. The reference @kozou/svelte-ui consumes it; a renderer in another framework can consume the same logic.

What's here

  • DataAdapter implementations — two pure HTTP clients (the in-house @kozou/api adapter and the external-REST adapter). They do no DB introspection; they speak a wire format.
  • List params — URL ⇄ ListParams (pagination, sort, filter, search).
  • List href helpers — build sort/pagination links and format list cells.
  • View columns — display/search column heuristics for a ViewContext.
  • Detail — cell formatting and foreign-key label resolution (loader-injected, so it is pure and testable).
  • Resource id — composite-key segment encode / decode / parse.
  • Caches — TTL + dedup caches for the SchemaContext and FK target rows (clock- and loader-injected; no Node-only dependency).

Stability

The surface here tracks the reference Admin UI it was extracted from. It is published so reference UIs can depend on it; it is not yet a documented public contract for third-party UIs.

License

Apache-2.0.