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

@hyzrui/core

v0.1.0

Published

HyperUI is an open-code React UI foundation with deeply customizable component primitives and theme presets.

Readme

HyperUI

A React component library built for real customization. 60+ open-source primitives you copy into your project, own the source, and tune to match your product — no sealed packages, no black boxes.

GitHub stars npm version

Why HyperUI

Most component libraries ship you a sealed package. You get what they give you.

HyperUI works differently: every primitive is yours to copy, edit, and reshape. The token system lets you go from neutral defaults to a fully branded design system without rewriting each component from scratch.

  • 60+ primitives — buttons, forms, overlays, navigation, data display, and more
  • Token-driven theming — radius, spacing, color, contrast, shadow, and typography all via CSS variables
  • 6 style presets — Stone, Mist, Sand, Carbon, Bloom, Edge — each a different visual direction
  • Dark mode — built-in, token-driven
  • Copy and own — no black box. The source is yours once installed.

Installation

npm install @hyzrui/core

Add the styles once in your app root:

import "@hyzrui/core/styles.css";

Wrap your app in the theme provider:

import { HyperThemeProvider } from "@hyzrui/core";

export default function App({ children }) {
  return <HyperThemeProvider>{children}</HyperThemeProvider>;
}

Usage

import { Button, Card, CardContent, CardHeader, CardTitle, Field, Input } from "@hyzrui/core";

export function LoginForm() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Sign in</CardTitle>
      </CardHeader>
      <CardContent>
        <Field label="Email">
          <Input placeholder="[email protected]" />
        </Field>
        <Button fluid>Continue</Button>
      </CardContent>
    </Card>
  );
}

Adding components via CLI

# pnpm
pnpm dlx hyperui add button

# npm
npx hyperui add button

# yarn
yarn dlx hyperui add button

# bun
bunx hyperui add button

This copies the component source into your project so you can edit it directly.

Theming

Use defineHyperTheme to create a custom theme:

import { defineHyperTheme, HyperThemeProvider } from "@hyzrui/core";

const theme = defineHyperTheme({
  id: "brand",
  radius: 10,
  density: "comfortable",
  colors: {
    background: "#f9fafb",
    foreground: "#111827",
    surface: "#ffffff",
    border: "#e5e7eb",
    primary: "#111827",
    primaryForeground: "#ffffff",
    accent: "#2563eb",
    accentForeground: "#ffffff",
  },
  typography: {
    controlSize: 14,
    headingWeight: 700,
  },
  sizing: {
    controlHeight: 38,
    buttonHeight: 34,
    cardPadding: 20,
  },
});

export default function App({ children }) {
  return <HyperThemeProvider theme={theme}>{children}</HyperThemeProvider>;
}

See the customization docs for the full token surface.

Local Development

npm install
npm run dev        # start the workbench at localhost:3000
npm run typecheck  # run TypeScript checks
npm run build:lib  # build the library for publishing

Contributing

Issues and pull requests are welcome at github.com/hyzr1/hyperUI.