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

hip-ui

v0.3.0

Published

A copy-and-own design system for modern React applications.

Readme

hip-ui

hip-ui is a copy-and-own design system for modern React applications. Instead of shipping opaque runtime components, it scaffolds production-ready component source directly into your app so you can customize everything.

Hip UI is inspired by tools like shadcn/ui, but it is built around React Aria for accessibility and StyleX for styling and design tokens.

Read the docs.

What You Get

  • 80+ application-ready components across forms, overlays, navigation, layout, content, status, color, and date/time.
  • Theme tokens for color, spacing, radius, shadow, typography, and motion.
  • Full ownership of the generated source code in your own repository.

How It Works

hip-ui is primarily a CLI. You run the installer, choose where generated files should live, and Hip UI copies component files into your project.

On first run, the CLI will prompt you for:

  • componentDir: where components should be written, such as src/components
  • packageManager: pnpm, npm, or yarn

That configuration is then saved to hip.config.json.

Quick Start

To install everything at once:

pnpm dlx hip-ui install --all

Or add a few core building blocks one by one. In this situation it makes sense to install hip-ui as a dev dependency so as you install components they come from the same version of the library.

pnpm dlx hip-ui install theme
pnpm dlx hip-ui install flex
pnpm dlx hip-ui install typography
pnpm dlx hip-ui install button

MCP Server

To get the most out of using Hip UI in your editor install the MCP server. If you plan to use the MCP server it makes sense to install hip-ui as a dev dependency so the docs provided by it match your installed components.

Configuration

You can let the CLI create hip.config.json interactively, or check one in yourself:

{
  "componentDir": "src/components",
  "packageManager": "pnpm"
}

After Installation

Each install copies source files into your configured component directory and installs any required third-party packages. For example, after installing button, you will typically import it from your local codebase rather than from hip-ui directly:

import { Button } from "@/components/button";

export function Example() {
  return <Button>Click me</Button>;
}

Adjust the import path to match your app's alias or folder structure.

Best Fit

Hip UI works best when you want:

  • a design system you can fully own
  • accessible primitives built on React Aria
  • StyleX-based tokens and component styling
  • more than just basic form controls, including page and layout building blocks

Notes

  • Hip UI scaffolds TypeScript and TSX files, so your app should already support React and TypeScript.
  • You will need to configure your bundler for stylex. We suggest using the official plugins.