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

minwindcss

v1.0.7

Published

MinWind is a lightweight JavaScript runtime CSS engine that parses min-* utility classes and applies styles directly to the DOM.

Downloads

14

Readme

Minwind CSS

Minwind CSS is a lightweight JavaScript runtime CSS engine that converts custom utility classes into inline styles directly in the browser.

Instead of writing CSS, you can use a simple syntax like:

<h1 class="min-bg-red min-text-white min-p-10">Hello</h1>

Minwind CSS parses these classes and applies styles automatically.

Installation

From npm

npm i minwindcss

From GitHub

git clone https://github.com/Minsu-Agrahari/minwindcss.git
cd minwindcss

Then include the script file:

<script src="./script.js"><script>

Usage

Using npm

import "minwindcss";

Using CDN/ Script

Example

<h1 class="min-bg-red min-text-white min-p-10">
  Heading
</h1>

<p class="min-m-5 min-fs-20">
  Paragraph text
</p>

Supported Utilities

|Minwind Class |CSS Applied | |--------------|----------------| |min-text-red |color: red | |min-bg-blue |background: blue| |min-fs-20 |font-size: 20px | |min-fw-bold |font-weight: bold| |min-p-10 |padding: 10px | |min-m-10 |margin: 10px; | |min-border-2 |border: 2px; | |min-rounded-5 |border-radius: 5px;| |min-w-100 |width: 100px; | |min-h-100 |height: 100px; | |min-top-10 |top: 10px; | |min-left-10 |left: 10px; |


Syntax

min-<property>-<value>

Examples

  • min-bg-red → background color
  • min-text-white → text color
  • min-p-10 → padding
  • min-m-5 → margin

How it works

HTML
  ↓
Scan all elements
  ↓
Extract classes starting with "min-"
  ↓
Split class into property & value
  ↓
Map property to CSS
  ↓
Apply inline styles using JS

File Strucutre

minwind/
│── demo_index.html
│── package.json
│── README.md
│── script.js
 demo_index.html is a live demo/playground file to showcase how Minwind works in real time.

Contribution

Contributions are welcome.

Steps

  1. Fork the repository

  2. Create a new branch

    git checkout -b feature-name
  3. Make your changes

  4. Commit your changes

    git commit -m "feat: your message"
  5. Push to your branch

    git push origin feature-name
  6. Open a Pull Request


Current Limitations

  • Limited utility support
  • No responsive (sm, md, lg) support
  • No pseudo states (hover, focus)
  • Uses inline styles only

Future Improvements

  • Add more utilities (flex, grid, etc.)
  • Add responsive variants
  • Add hover/focus states
  • Build JIT-style CSS engine
  • Improve parsing performance

Author

Minsu Agrahari

Summary

MinWind CSS is a beginner-friendly utility-first CSS engine that helps you understand how frameworks like Tailwind work internally while providing a simple and extendable styling system.