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

another-react-component-library

v0.13.0

Published

A customizable React 19 component library built with Vite, Tailwind CSS v4 and TypeScript.

Readme

⚡️ Another React Component Library

npm (scoped) CI TypeScript React Tailwind Storybook License: MIT

A sleek, blazing-fast React 19 component kit — typed, styled, tested, documented, and ready to ship. 🚀


📖 See It in Action — Explore the Storybook

👉 View Storybook Live

Interactive playground for every component. Try props, test styles, and preview in real-time. 🆕 Always updated with the latest published components.


🧠 Why?

  • 🧠 Built with React 19, TypeScript 5, Tailwind CSS v4
  • ⚡️ Lightning-fast dev experience with Vite
  • ✨ Zero-config styles with automatic CSS—no setup needed
  • 📚 Interactive docs via Storybook v9
  • 🧪 Fully testable with Vitest & Testing Library
  • ♿️ Accessible components
  • ⚙️ Tree-shakable and ESM-ready
  • 🔄 Continuous Integration via GitHub Actions

✨ Quickstart

📦 Install

npm i another-react-component-library

🚀 Quick Example

import { Button } from "another-react-component-library";

function App() {
  return <Button label="Launch" onClick={() => alert("Boom!")} />;
}

🧰 Tech Stack

| Feature | Tool/Lib | | ------------------- | ------------------------ | | 💻 Framework | React 19 | | 🧠 Typed | TypeScript 5 | | 🎨 Styling | TailwindCSS v4 | | ⚡️ Build Tool | Vite 6 | | 📖 Docs | Storybook 9 | | ✅ Testing | Vitest + Testing Library | | 🚀 Deployment Ready | Rollup output, UMD/ESM |


🛠️ Inside the Box

├── atoms/
│   ├── Alert/               # Alert/notification component
│   ├── Avatar/              # User profile image
│   ├── Badge/               # Status indicator
│   ├── Button/              # Interactive button
│   ├── Card/                # Content container with variants
│   ├── Checkbox/            # Checkbox input
│   ├── Divider/             # Visual separator
│   ├── ErrorMessage/        # Error display
│   ├── HelperText/          # Form helper text
│   ├── Icon/                # Icon component
│   ├── IconButton/          # Button with icon
│   ├── Image/               # Accessible image
│   ├── Input/               # Basic input
│   ├── Label/               # Form label
│   ├── Link/                # Navigation link
│   ├── ProgressBar/         # Progress indicator
│   ├── Radio/               # Radio input
│   ├── Spinner/             # Loading spinner
│   ├── Switch/              # Toggle switch
│   ├── Text/                # Typography component
│   ├── TextArea/            # Multi-line input
│   ├── TimeDisplay/         # Time formatter
└───└── Tooltip/             # Tooltip element
├── molecules/
│   ├── BadgeAvatar/          # Avatar with badge overlay
│   ├── CheckboxGroup/        # Group of checkboxes
│   ├── Clock/                # Live-updating time
│   ├── CreditCardForm/       # Credit card input form with validation
│   ├── CreditCardPreview/    # Editable credit card preview
│   ├── DropZone/             # File upload with drag & drop functionality
│   ├── Form/                 # Advanced form component with validation
│   ├── FormField/            # Complete form field with label and validation
│   ├── InputField/           # Input with label and validation
│   ├── RadioGroup/           # Group of radio buttons
│   ├── Search/               # Search input with functionality
│   ├── Select/               # Dropdown select
└───└── UserPreview/          # User information display
├── organisms/
└───└── Table/                # Data table with sorting, striping, and responsive design

📦 another-react-component-library
├── lib/                     # All UI components and supporting files
│   ├── @types/              # Custom type declarations
│   ├── assets/              # Static assets like images or SVGs
│   ├── atoms/               # Atomic components (basic building blocks)
│   ├── molecules/           # Composed components (built from atoms)
│   ├── hooks/               # Custom React hooks
│   ├── index.ts             # Library entry point
│   ├── index.css            # Global styles
│   └── vite-env.d.ts        # Vite environment types
├── .storybook/              # Storybook configuration
├── vitest.setup.ts          # Vitest test environment
├── vite.config.ts           # Vite bundler config
├── vitest.config.ts         # Vitest configuration
├── vitest.shims.d.ts        # Type shim for tests
├── tsconfig.json            # Base TS config
├── tsconfig.app.json        # TS config for app build
├── tsconfig.node.json       # TS config for node tools
├── .gitignore               # Git ignored files
├── .prettierrc              # Code formatter config
├── eslint.config.js         # Linter configuration
├── lefthook.yml             # Git hooks (via Lefthook)
├── package.json             # Project manifest
├── package-lock.json        # Dependency lockfile
└── README.md                # Project overview

🤘 Contribute

Have an idea or want to improve a component? PRs welcome!

🪪 License

MIT