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

@ahrowe/ui

v0.2.6

Published

A React UI component library with theming, CSS Modules, and TypeScript support

Readme

ahrowe-ui

A React UI component library with theming, form validation, and a full component suite.

Install

npm install @ahrowe/ui

Usage

import '@ahrowe/ui/style.css';

function App() {
  return (
    <ThemeProvider>
      App content here
    </ThemeProvider>
  );
}

Claude Code Integration

Add one line to your project's CLAUDE.md and Claude will have full awareness of all components, props, and usage patterns:

@node_modules/@ahrowe/ui/docs/CLAUDE.md

Claude will know:

  • All available components and when to use each one
  • Full prop APIs with TypeScript types
  • ThemeProvider setup and CSS variable system
  • FormValidator integration for form components
  • Slot customisation (classNames / styles props)

MCP Server (advanced)

For richer integration — component search, dynamic docs — add the MCP server to your .claude/settings.json:

{
  "mcpServers": {
    "ahrowe-ui": {
      "command": "npx",
      "args": ["ahrowe-ui-mcp"]
    }
  }
}

This gives Claude three tools: list_components, get_component_docs, and search_components.

Components

| Component | Description | |-----------|-------------| | Accordion | Collapsible sections | | ActionButtons | Submit / Cancel button pair | | ActionIcon | Icon-only button | | BodyEnd | Portal renderer to #bodyEnd | | Button | Primary action button with loading state | | Card + CardHeader + CardMedia + CardContent + CardActions | Surface container | | Checkbox | Boolean toggle input | | Chip + ChipContainer | Compact tag / filter token | | ColorPicker | Hex colour selector | | ConfirmModal | Destructive action confirmation dialog | | Dropdown | Single-value select | | EmptyState | Placeholder for empty lists / search results | | Fab | Floating action button with speed dial | | FloatingMenu | Contextual popover | | Icon | Built-in SVG icons | | IconLoading + SpinnerLoading | Loading indicators | | IdleManager | User inactivity detection | | InfiniteBlock | Infinite scroll container | | Input | Floating-label text input (text, email, password, phone, search…) | | InteractableDiv | Accessible clickable container | | KanbanBoard + KanbanColumn | Drag-and-drop kanban board | | Modal | Full overlay dialog | | NumberInput | Formatted numeric input | | OptionPicker | Segmented single-choice control | | Overscroll | Mobile-style collapsing header on scroll | | ProgressBar | Single or stacked progress bar | | Ripple | Material ink ripple effect | | RoomDrawer | Interactive floor-plan canvas | | ScrollbarProvider | Custom scrollbar styling wrapper | | SearchInput | Debounced search field with optional result count | | Stepper | Step progress indicator | | TenorPicker | GIF picker backed by the Tenor API | | Textarea | Multiline text input | | ThemeProvider + useTheme | Theme context and CSS variables | | Tooltip | Info / error / details tooltip | | Wizard | Animated multi-step container |

Services

| Export | Description | |--------|-------------| | FormValidator | Per-field validation state | | FormValidatorGroup | Group of validators | | Validators | Built-in validator functions | | useFormValidator | Hook for FormValidator | | useFormValidatorGroup | Hook for FormValidatorGroup | | mapLocale, setLocale, getLocale | Localisation helpers |