through2-pipeline

For laying pipelines. Built on repipe.

Usage no npm install needed!

<script type="module">
  import through2Pipeline from 'https://cdn.skypack.dev/through2-pipeline';
</script>

README

pipe(line)

For laying pipelines. Built on repipe.

Usage

var line = pipeline(cipher, decipher, process.stdout);
fs.createReadStream('README.md').pipe(line);

becomes

fs.createReadStream('README.md').pipe(cipher).pipe(decipher).pipe(process.stdout)

Installation

npm install through2-pipeline