# js-tachyons

> A hand-tweaked build of the popular Functional CSS library Tachyons.

Latest version **1.3.4** (published 2019-11-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install js-tachyons
pnpm add js-tachyons
yarn add js-tachyons
bun add js-tachyons
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.4 |
| Published | 2019-11-27 |
| First published | 2018-02-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 128.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Jesse Stuart |
| Maintainers | jesses |
| Keywords | functional-css, tachyons, tachyons-css |

## Links

- npm: https://www.npmjs.com/package/js-tachyons
- Repository: https://github.com/jessestuart/js-tachyons
- Homepage: https://js-tachyons.now.sh
- Issues: https://github.com/jessestuart/js-tachyons/issues
- npm.io page: https://npm.io/package/js-tachyons

## Recent versions

- 1.3.4 (latest) — 2019-11-27
- 1.0.5-6 (beta) — 2018-02-12
- 1.3.2 — 2019-06-27
- 1.3.1 — 2019-06-27
- 1.3.0 — 2019-06-27
- 1.2.0 — 2019-02-03
- 1.1.4 — 2018-06-17
- 1.1.3 — 2018-06-02
- 1.1.2 — 2018-02-18
- 1.1.1 — 2018-02-14
- 1.1.0 — 2018-02-12
- 1.0.5-5 — 2018-02-12
- 1.0.5-4 — 2018-02-11
- 1.0.5-3 — 2018-02-11
- 1.0.5-2 — 2018-02-11
- … 7 more at https://npm.io/package/js-tachyons/versions

## README

# js-tachyons

A hand-tweaked build of the popular Functional CSS library
[Tachyons](https://github.com/tachyons-css/tachyons). Built in order to
facilitate code reuse between front-end projects. Intended for personal use, but
feel free to
[fork](https://github.com/jessestuart/js-tachyons#fork-destination-box) and
adapt to your own needs.

### Usage

To customize, tweak the files in `src/config/` to your liking, then run:

```bash
# Install dependencies.
$ yarn -s
# Output generated CSS to `dist`.
$ yarn generate
```

You could then publish to NPM or a private registry (after editing
`package.json` to specify your own package name) with `yarn publish`.

Alternatively, if you want to avoid having to re-publish every time you make a
change while developing locally, you can make use of `yarn`'s `link`
functionality:

```bash
# In the root of your custom `tachyons` package:
cd ~/my-custom-tachyons
yarn link
# In the root of your project that depends on said package:
cd ~/my-web-app
yarn link my-custom-tachyons
```

This will create a symbolic link in your app's `node_modules` folder that
resolves to the local installation of your custom Tachyons package. Be sure to
run `yarn unlink my-custom-tachyons` when you're done testing.

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