# tap-nyan

> Formatted TAP output like Mocha's spec reporter

Latest version **1.1.0** (published 2016-11-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install tap-nyan
pnpm add tap-nyan
yarn add tap-nyan
bun add tap-nyan
```

Provides the commands `tnyan`, `tap-nyan`.

## 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.1.0 |
| Published | 2016-11-22 |
| First published | 2014-03-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 148 |
| Maintainers | cwmma |
| Keywords | tape, tap, mocha, spec, reporter |

## Links

- npm: https://www.npmjs.com/package/tap-nyan
- Repository: https://github.com/calvinmetcalf/tap-nyan
- Homepage: https://github.com/calvinmetcalf/tap-nyan#readme
- Issues: https://github.com/calvinmetcalf/tap-nyan/issues
- npm.io page: https://npm.io/package/tap-nyan

## Dependencies (4)

- [chalk](https://npm.io/package/chalk.md) ^1.1.3
- [duplexer2](https://npm.io/package/duplexer2.md) ^0.1.4
- [tap-parser](https://npm.io/package/tap-parser.md) ^3.0.3
- [supports-color](https://npm.io/package/supports-color.md) ^3.1.2

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.1.0 (latest) — 2016-11-22
- 1.0.0 — 2016-11-17
- 0.0.2 — 2014-03-25
- 0.0.1 — 2014-03-25

## README

# tap-nyan

NYAN TAP output ~~inspired by~~ blatantly copied from Mocha's [nyan reporter](https://github.com/visionmedia/mocha/blob/master/lib/reporters/nyan.js) with much tap material taken from Scott Corgan's awesome [tap-spec reporter](https://github.com/scottcorgan/tap-spec).  Very rough at the moment.

![screen shot](http://i.imgur.com/T1eH156.png)

**Colors**

The Nyan cat color scheme will automatically be downgraded to ANSI on terminals
that doesn't support 265 colors.

For CLI color options see the [supports-color](https://github.com/chalk/supports-color#info) module.

## Install

```
npm install tap-nyan --save-dev
```

## Usage

**packge.json**

```json
{
  "name": "module-name",
  "scripts": {
    "test": "node ./test/tap-test.js | tnyan"
  }
}
```

Then run with `npm test`

**Terminal**

```
node test/test.js | node_modules/.bin/tnyan
```

**Testling**

```
npm install testling -g
testling test/test.js | node_modules/.bin/tnyan
```

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