Skip to content
Zafranudin Zafrin edited this page Sep 8, 2023 · 6 revisions

Welcome!

This is the wiki for WindClutter.

WindClutter aims to provide better developer experience on large project.

Quickly develop your application with TailwindCSS without worry of its aftermath.

This is a bleeding edge project! Use with caution ⚠️

Getting started

To get started, install WindClutter into your system.

$ gem install windclutter

$ cd your_project
$ windclutter use

In Action

1. Single file analysis -f

$ windclutter analysis -f src/index.html
# output

Analysing src/index.html...
Done!
{
                 "flex" => 3,
             "flex-col" => 3,
}

2. Project traversal -t (NEW)

Provide an option with your file extension, and let it do its magic! 🎉

$ windclutter analysis -t .html
# output

Analysing .html...
Traversed 22 .html file(s)... 🎉
{
            "flex" => 44,
        "flex-col" => 31,
    "items-center" => 30,
     "text-center" => 21,
           "gap-2" => 14
}
...and 120 more

Concept

Currently the CLI is pretty barebone, but I'm planning to add more and more functionalities to it.

Clone this wiki locally