# tap-diff

> The most human-friendly TAP reporter

Latest version **0.1.1** (published 2016-01-14) · MIT license · 0 weekly downloads

## Install

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

Provides the command `tap-diff`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2016-01-14 |
| First published | 2015-11-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 93 |
| Author | axross |
| Maintainers | axross |
| Keywords | tap, tape, ava, test, reporter, diff |

## Links

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

## Dependencies (7)

- [diff](https://npm.io/package/diff.md) ^2.2.1
- [chalk](https://npm.io/package/chalk.md) ^1.1.1
- [figures](https://npm.io/package/figures.md) ^1.4.0
- [duplexer](https://npm.io/package/duplexer.md) ^0.1.1
- [through2](https://npm.io/package/through2.md) ^2.0.0
- [pretty-ms](https://npm.io/package/pretty-ms.md) ^2.1.0
- [tap-parser](https://npm.io/package/tap-parser.md) ^1.2.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

- 0.1.1 (latest) — 2016-01-14
- 0.1.0 — 2015-11-14
- 0.0.3 — 2015-11-14
- 0.0.2 — 2015-11-14
- 0.0.1 — 2015-11-14
- 0.0.0 — 2015-11-13

## README

# tap-diff

[![npm version](https://badge.fury.io/js/tap-diff.svg)](http://badge.fury.io/js/tap-diff)

The most human-friendly [TAP reporter](https://github.com/substack/tape#pretty-reporters).

![Screenshot](screenshot1.png)

![Screenshot](screenshot2.png)

## How to use

You can use tap-notify in the same way as other [TAP reporters](https://github.com/substack/tape#pretty-reporters).

```
npm install -g tap-diff
```

```
tape ./*.test.js | tap-diff
```

Or use with `createStream()`:

```javascript
var test = require('tape');
var tapDiff = require('tapDiff');

test.createStream()
  .pipe(tapDiff());

process.argv.slice(2).forEach(function (file) {
  require(path.resolve(file));
});
```

## License

MIT

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