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

chaibrew

v1.0.5

Published

A lightweight utility-first CSS engine. Brew your Chai in your own style.

Readme

☕ ChaiBrew

Brew your Chai, in your own style.

A zero-setup, utility-first CSS engine — just install, import, and start styling.


🚀 What is ChaiBrew?

ChaiBrew is a lightweight CSS engine that lets you style your UI directly from HTML using simple utility classes like:

<div class="chai-bg-red chai-p-10 chai-rounded-8"></div>

No CSS files. No configuration. No manual initialization.

Just install and use ⚡


⚡ Zero Setup Usage

📦 Install

npm install chaibrew

🔌 Import (That’s it!)

import "chaibrew";

No need to call anything manually — ChaiBrew runs automatically.


🎨 Use in HTML

<div class="chai-bg-blue chai-p-20 chai-text-white chai-rounded-10">
  Welcome to ChaiBrew ☕
</div>

🧠 How It Works

ChaiBrew automatically:

  1. 🔍 Scans DOM for chai-* classes
  2. 🧠 Parses class names
  3. 🎨 Applies styles dynamically
  4. 🧹 Cleans processed classes safely

🧪 Example

Input

<div class="chai-w-200 chai-h-100 chai-bg-green chai-rounded-12"></div>

Output (Rendered)

  • width: 200px
  • height: 100px
  • background-color: green
  • border-radius: 12px

🧱 Utility Examples

| Class | Output | | -------------- | --------------------- | | chai-bg-red | background-color: red | | chai-p-10 | padding: 10px | | chai-m-20 | margin: 20px | | chai-rounded-8 | border-radius: 8px | | chai-w-200 | width: 200px |


🛡️ Safe by Design

  • ✔ Only processes chai-* classes
  • ✔ Keeps your custom classes untouched
  • ✔ No global CSS pollution

🧩 Optional Manual Control

If you ever want manual control:

import chaiBrew from "chaibrew";

chaiBrew();

📁 Project Structure

src/
 ├── engine/
 │    ├── parser.js
 │    ├── applier.js
 │    └── index.js
 ├── config/
 │    └── map.js
 └── index.js

💡 Use Cases

  • 🚀 Rapid prototyping
  • 🎯 Learning CSS engines
  • 🧪 Building custom utility systems
  • 🧩 Lightweight UI projects

🧠 Inspiration

Inspired by utility-first CSS frameworks like Tailwind, built to simplify and understand the core idea.


🤝 Contributing

Contributions and ideas are welcome. Let’s brew something amazing ☕


📄 License

MIT License


👨‍💻 Author

Ritik Raghuwanshi Building simple, powerful developer tools ⚡