Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saadeghi/tailwindcss-document-cli
Tailwind CSS Document for CLI
https://github.com/saadeghi/tailwindcss-document-cli
cli css document node-cli tailwind tailwind-css tailwindcss
Last synced: 3 months ago
JSON representation
Tailwind CSS Document for CLI
- Host: GitHub
- URL: https://github.com/saadeghi/tailwindcss-document-cli
- Owner: saadeghi
- License: mit
- Created: 2020-12-29T16:54:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T13:48:18.000Z (11 months ago)
- Last Synced: 2024-10-11T12:48:01.162Z (4 months ago)
- Topics: cli, css, document, node-cli, tailwind, tailwind-css, tailwindcss
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/tailwindcss-document-cli
- Size: 24.4 KB
- Stars: 47
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tailwind CSS Document CLI
If you're tired of opening [tailwindcss.com](https://tailwindcss.com/) website every minute to look up for class names or available utility values, install this package 😅
![](https://raw.githubusercontent.com/saadeghi/files/main/tailwindcss-document-cli/demo.gif)
## Features
- Search Tailwind CSS class names in your CLI
- There's a link to the website if you need more details
- Fuzzy search## Install
Install globally (with `-g`).
```
npm i tailwindcss-document-cli -g
```## Use
just type `tw` with any word.
```
tw z-index
```
```
🔍 Found 1 result for z-indexZ-index https://tailwindcss.com/docs/z-index
z-[0|10|20|30|40|50|auto]
```
---
```
tw underline
```
```
🔍 Found 1 result for underlineText Decoration https://tailwindcss.com/docs/text-decoration
underline
line-through
no-underline
```
---
```
tw font vr
```
```
🔍 Found 1 result for font vrFont Variant Numeric https://tailwindcss.com/docs/font-variant-numeric
normal-nums
ordinal
slashed-zero
lining-nums
oldstyle-nums
proportional-nums
tabular-nums
diagonal-fractions
stacked-fractions
```
---
It's fuzzy search so it forgives your typo 🤓
and tries to find similar results
```
tw pading
```
```
🔍 Found 2 results for padingPadding https://tailwindcss.com/docs/padding
[p|py|px|pt|pr|pb|pl]-[0|1|2|3|4|5|6|10|12|16|20|24|32|40|48|56|64|px]Line Height https://tailwindcss.com/docs/line-height
leading-[3|4|5|6|7|8|9|10|none|tight|snug|normal|relaxed|loose]
```