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

@blcklab/kireix

v1.0.1

Published

Production-ready, framework-agnostic theme registry with dynamic plugins, semantic CSS variables, SSR helpers, and premium light/dark presets.

Readme

Kireix

Kireix is a production-ready, framework-agnostic theme engine for applications, documentation sites, component libraries, and static websites.

It provides a validated theme registry, semantic CSS variables, light and dark appearances, safe lazy loading, persistence helpers, and SSR utilities with zero runtime dependencies.

Install

npm install @blcklab/kireix

Quick start

import {
  createKireix,
  createThemeRegistry,
  premiumThemePlugin,
} from '@blcklab/kireix'

const registry = createThemeRegistry()
registry.register(premiumThemePlugin)

const kireix = createKireix({
  registry,
  target: document.documentElement,
  theme: 'kireix-aurora',
  mode: 'system',
})

kireix.apply()

Use the generated semantic variables from any CSS system:

body {
  color: var(--kireix-text);
  background: var(--kireix-canvas);
  font-family: var(--kireix-font-sans);
}

.button {
  color: var(--kireix-on-accent);
  background: var(--kireix-accent);
  border-radius: var(--kireix-radius-control);
}

Highlights

  • Zero runtime dependencies.
  • Framework-agnostic and SSR-safe.
  • ESM, CommonJS, and TypeScript declarations.
  • Transactional plugin registration and inheritance validation.
  • Safe plugin ownership, replacement, and unregistration.
  • Allowlisted lazy loading with concurrent-load deduplication.
  • Race-safe theme changes and reactive system appearance.
  • Semantic CSS variables and native color-scheme support.
  • Optional no-flash SSR and local-storage helpers.
  • Twelve coordinated premium themes.

Documentation

Read the complete production documentation in /docs:

Package entry points

@blcklab/kireix
@blcklab/kireix/core
@blcklab/kireix/catalog
@blcklab/kireix/presets
@blcklab/kireix/ssr
@blcklab/kireix/persistence

Use direct subpath imports when a consumer needs only part of the package:

import { createThemeRegistry } from '@blcklab/kireix/core'
import { premiumThemePlugin } from '@blcklab/kireix/presets'

License

MIT