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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@art70x/prewind

v1.0.0

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, readable 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(), etc.)
  • Fast, zero-runtime — designed for build-time processing
  • CLI-friendly — runs before Prettier or your dev server
  • Optional --debug flag to print a visual transformation tree

📦 Installation

pnpm add -D @art70x/prewind
# or
npm install -D @art70x/prewind
# or
yarn add -D @art70x/prewind

Global install (optional):

pnpm add -g @art70x/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 | | --debug | Print detailed transformation tree | | -h, --help | Show CLI help |


🚀 Usage

Print to console

prewind src/test.html

Outputs the transformed file to console (does not modify files).

Write in place

prewind -w src/test.html

Transforms and overwrites the file in place.

Output to directory

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

Transforms matching files and writes them into dist/.

Debug the transformation tree

prewind src/test.html --debug

Displays the nested variant structure before output.


🧱 Example

Input:

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

Command:

prewind -w test.html

Output:

<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>

🧩 Integration Example

Use Prewind as a pre-step in your workflow:

{
  "scripts": {
    "dev": "vite",
    "preformat": "prewind src/**/*.html -w",
    "format": "prettier -w src"
  }
}

🧠 Why Prewind?

Manually writing 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 and clearly:

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

Runs before Prettier or Tailwind JIT — so there are no conflicts with formatters or dev servers.


🛠️ Development

pnpm install
pnpm run dev src/test.html

Build production CLI:

pnpm run build

Test globally:

pnpm link --global
prewind src/**/*.html

🧭 Roadmap

  • [ ] Add config file support (prewind.config.json)
  • [ ] Add --dry and --silent modes

🧑‍💻 Author

art70x — MIT License © 2025 GitHub Repository →


🌀 Prewind — write less, expand more