# css-jojo

> Generate random CSS

Latest version **0.0.1** (published 2019-02-07) · 0 weekly downloads

## Install

```sh
npm install css-jojo
pnpm add css-jojo
yarn add css-jojo
bun add css-jojo
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2019-02-07 |
| First published | 2019-02-07 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Stoyan |
| Maintainers | stoyan |
| Keywords | css, random |

## Links

- npm: https://www.npmjs.com/package/css-jojo
- Repository: https://github.com/stoyan/css-jojo
- Homepage: https://github.com/stoyan/css-jojo#readme
- Issues: https://github.com/stoyan/css-jojo/issues
- npm.io page: https://npm.io/package/css-jojo

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2019-02-07

## README

Generate random CSS declarations

## How?

```js
import {getRandomRuleset} from 'css-jojo';

// generate 1000 1-line (1 declaration each) rules, 5 chars classnames, non-pretty
for (let i = 0; i < 1000; i++) {
  console.log(getRandomRuleset(1, 5, false));  
}
```

This results in:

```
.fjvdc {max-width: 10px}
.w21w8 {margin-bottom: 8px}
.qhe4f {outline-radius: 1px}
.rkgiq {font-style: oblique 45deg}
...
```

## Why?

You know, for testing.

---
_Source: https://npm.io/package/css-jojo · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
