-
I've found the new repository tailwindlbals/tailwindcss-jit which seems like exact copy of windicss except newer (oldest commit is from 20 days ago). What are the differences? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
Interesting you ask! From the tech aspect, Tailwind JIT is a postcss plugin that firing up a filesystem watcher to scan the source code in order to do the on-demand generating the CSS. Windi CSS is a standalone compiler with no dependencies that can works everywhere, even in your browser. We make plugins for each build tool/framework to provide the best experience for each of them. If you want to experience the difference yourself, I made a repo where you can play and compare with them in Vite: https://github.com/antfu/vite-windi-tailwind-jit-compare On the other hand, Unlike Tailwind is backed by a company, Windi CSS is fully community-based by a bunch of passionated contributors. Our goal is to provide a better development experience on a utilities-first CSS framework. We already provide a few cool features that Tailwind JIT is still lacking, for example, Utilties Groups and "Design in DevTools" support. Meanwhile, we are working on quite many exciting new features that we believe would push the DX even further. We are also actively working with Twind to standardized spec for our community-based DSL. As for the similarity, unfortunately, we have suffered some dark side of open source. If you'd want, you can take a peek at the whole event by reading my post here. But luckily, we have been through all this and find an awesome community supporting us. We will keep doing our best job trying to provide the best development experience to the community. Please stay tuned. If you find it useful, please consider sponsoring us on Open Collective to keep us sustainable. Thank you. |
Beta Was this translation helpful? Give feedback.
-
Hey, this answer is a couple of years old. How are both frameworks compared to each other nowadays? I couldn't find benchmarks regarding the performance. Also, the differences in the DX would be great to know. @antfu, could you give a quick overview of the main differences between windi / tailwind? |
Beta Was this translation helpful? Give feedback.
-
I also wish to know as @Cluster2a and several others. I have used Windi and Uno in some project but kept going back to Tailwind. I wish to continue using Windi as I love supporting "the smaller guy" and it is perfectly inline with my own personal beliefs of using more FOSS projects and relying less on corporate owned/managed tools 👍 |
Beta Was this translation helpful? Give feedback.
-
For anyone else looking into this, I'm terribly afraid this project has been abandoned :/ |
Beta Was this translation helpful? Give feedback.
Interesting you ask!
From the tech aspect,
Tailwind JIT is a postcss plugin that firing up a filesystem watcher to scan the source code in order to do the on-demand generating the CSS.
Windi CSS is a standalone compiler with no dependencies that can works everywhere, even in your browser. We make plugins for each build tool/framework to provide the best experience for each of them.
If you want to experience the difference yourself, I made a repo where you can play and compare with them in Vite: https://github.com/antfu/vite-windi-tailwind-jit-compare
On the other hand,
Unlike Tailwind is backed by a company, Windi CSS is fully community-based by a bunch of passionated contributors. Our go…