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

prewind

v2.1.1

Published

A lightweight preprocessor that expands Tailwind shorthand like hover(px-4 py-2) into hover:px-4 hover:py-2.

Readme

🌀 Prewind

Write less, expand more.

NPM Downloads NPM Version GitHub Stars License

A lightweight preprocessor that expands Tailwind-style shorthand into full variant syntax. Write expressive classes like:

<div
  class="hover(bg-blue-500 text-blue-50) dark(border-blue-300 hover(bg-blue-400 text-blue-950))"
></div>

and automatically transform them into:

<div
  class="hover:bg-blue-500 hover:text-blue-50 dark:border-blue-300 dark:hover:bg-blue-400 dark:hover:text-blue-950"
></div>

✨ Features

  • Expand Tailwind shorthand groups automatically
  • Supports nested variants (hover(), dark(), group-hover(), peer-focus(), not(), etc.)
  • Fast, zero-runtime — designed for build-time processing
  • CLI-friendly — runs before Prettier or dev servers
  • Fully verbose logging with -v/--verbose option
  • Colored console output with picocolors
  • Works in Node, CLI, and browser environments

📦 Installation

pnpm add -D prewind
# or
npm install -D prewind
# or
yarn add -D prewind

Global install (optional):

pnpm add -g prewind

⚙️ CLI Options

| Flag | Description | | --------------------- | --------------------------------------------------- | | <patterns...> | File path(s) or glob pattern(s) to process | | -w, --write | Overwrite files in place | | -o, --out <dir> | Output transformed files into a directory or file | | -v, --verbose | Show detailed file processing logs (colored output) | | --dry-run | Preview changes without writing (default) | | --ignore <patterns> | Glob patterns to ignore | | -h, --help | Show CLI help |


🚀 CLI Usage

Dry-run / Preview (default)

prewind src/test.html
prewind "src/**/*.html" --dry-run

Outputs transformed files to console without modifying them.

Write files in place

prewind -w src/test.html
prewind src/**/*.html --write

Prompts confirmation before overwriting files.

Output to a directory

prewind src/**/*.html -o dist
prewind src/test.html -o out.html

Verbose Mode (colored)

prewind src/**/*.html --dry-run -v
prewind src/**/*.html --write -v
prewind src/**/*.html -o dist -v

Prints Changed/Unchanged for each file, showing input → output paths in colored console.


🌐 Browser Usage

Prewind also works in the browser via ESM modules.

Using ES Modules

<script type="module">
  import { transform } from 'https://cdn.jsdelivr.net/npm/prewind/dist/main.js'

  const html = `
    <div
      class="hover(bg-blue-500 text-blue-50) dark(border-blue-300 hover(bg-blue-400 text-blue-950))"
    ></div>
  `

  console.log(transform(html))
</script>

Transforming DOM Elements

<div id="btn" class="hover(bg-blue-500 text-white)"></div>

<script type="module">
  import { transformDOM } from 'https://cdn.jsdelivr.net/npm/prewind/dist/main.js'

  const el = document.getElementById('btn')
  transformDOM(el)
  // <div id="btn" class="hover:bg-blue-500 hover:text-white"></div>
</script>

Watching DOM Changes

<div id="app"></div>

<script type="module">
  import { observeDOM } from 'https://cdn.jsdelivr.net/npm/prewind/dist/main.js'

  const app = document.getElementById('app')
  observeDOM(app)

  const btn = document.createElement('button')
  btn.className = 'hover(bg-red-500 text-white)'
  app.appendChild(btn)

  // observeDOM auto-transforms new elements
</script>

Using in Frameworks

import { transform } from 'prewind'

const jsx = `<div class="hover(bg-blue-500 text-white)"></div>`
console.log(transform(jsx))
// <div class="hover:bg-blue-500 hover:text-white"></div>

Works in React, Vue, Svelte, or any frontend framework. Integrate as a build-time step with Vite/Webpack/Rollup.


🧠 Why Prewind?

Writing full Tailwind variants is verbose:

<div
  class="hover:bg-blue-500 hover:text-blue-50 dark:hover:bg-blue-400 dark:hover:text-blue-950"
></div>

Prewind lets you express them structurally:

<div class="hover(bg-blue-500 text-blue-50) dark(hover(bg-blue-400 text-blue-950))"></div>

No conflicts with Prettier or Tailwind JIT — works before formatters or dev servers.


🛠️ Development

pnpm install
pnpm run try tests/test.html      # Run CLI locally
pnpm run build                     # Build CLI + browser
pnpm link --global                 # Test global CLI
prewind src/**/*.html              # Run globally

🧭 Roadmap

  • [x] v2.1: Verbose logging, colored CLI, safe --out handling
  • [ ] Config file support (prewind.config.json)
  • [ ] Add --dry and --silent modes

🧑‍💻 Author

art70x — MIT License © 2025 GitHub Repository →


🌀 Prewind — write less, expand more