pipe-io

4.0.1 • Public • Published

Pipe-io License NPM version Dependency Status Build Status Coverage Status

Pipe streams and handle events.

Install

npm i pipe-io

API

pipe

Create pipe between streams and adds callback wich would be called once whenever everything is done, or error occures.

const fs = require('fs');
 
const pipe = require('pipe-io');
const tryToCatch = require('try-to-catch');
 
const NAME = 'README.md';
const NAME2 = 'README2.md';
const readStream = fs.createReadStream(NAME);
const writeStream = fs.createWriteStream(NAME2);
 
const [e] = await tryToCatch(pipe, [readStream, writeStream]);

Related

  • Pullout - pull out data from stream

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i pipe-io

Weekly Downloads

20,450

Version

4.0.1

License

MIT

Unpacked Size

14.1 kB

Total Files

5

Last publish

Collaborators

  • coderaiser