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

cl-ui-components

v1.0.4

Published

> ✨ A modern, reusable React UI component library built with Emotion and Babel. Designed for fast, scalable development.

Readme

cl-ui-components

✨ A modern, reusable React UI component library built with Emotion and Babel. Designed for fast, scalable development.

npm License


📦 Installation

npm install cl-ui-components
 ### Usage
import { Button } from 'cl-ui-components';

export default function App() {
  return (
    <div>
      <Button onClick={() => alert('Clicked!')}>Click Me</Button>
    </div>
  );
}
All components are fully styled, accessible, and ready for production.

 # Available Components
Button

Input

Card

(More coming soon...)

You can preview all components locally via the built-in preview app (see below).

# Local Development
If you want to develop or contribute:

# Clone the repo
# git clone https://github.com/your-username/uicomponents.git
# cd uicomponents

# Install dependencies

npm install

Start the Preview App

npm run preview
Open http://localhost:5173 to view it in the browser.

# 🖼 Preview Application (Storybook-style)
Built-in local preview app for faster development.

Sidebar navigation for switching between components.

Auto-generated routes for easier scalability.

Tip: Simply add a new preview component and update the config.js to make it appear in the sidebar instantly!

# 📁 Project Structure

uicomponents/
├── dist/              # Compiled library output
├── src/               # Component source code
│   └── components/
├── preview/           # Preview app (Storybook-like)
│   ├── App.jsx
│   ├── config.js
│   └── components/
├── package.json
├── rollup.config.js   # Rollup bundler config
└── README.md
📄 License
This project is licensed under the MIT License.
Feel free to use it for personal or commercial projects.

🙌 Contributing
We welcome contributions!
Please feel free to submit issues, suggestions, or pull requests.

📢 Notes
Built with React, Emotion (CSS-in-JS), Babel, Rollup, and Vite for previewing.

No TypeScript is required (but you can add .d.ts if needed for better DX).

Small, tree-shakeable, and framework-agnostic.

🚀 Let's Build Better UIs, Faster!