pipe-io
v4.0.1
Published
Pipe streams and handle events
Downloads
106,034
Readme
Pipe-io
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