1.0.0 • Published 7 years ago

covefe v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Covefe

A node module that converts streams of text into Trump-talk.

Installation

yarn add covefe
npm install covefe

Usage

The covefe node module is a stream transform:

const fs = require('fs');
const covefe = require('covefe');

// Read foo.txt, convert text with covefe, and output to stdout
fs.createReadStream('foo.txt')
  .pipe(covefe)
  .pipe(process.stdout);

The covefe CLI command reads and converts stdin:

echo "What is your code coverage?" | covefe
> What is your code covefe?
1.0.0

7 years ago