lhl 6ff0e96ad3 8-4-1 | il y a 1 an | |
---|---|---|
.. | ||
History.md | il y a 1 an | |
LICENSE | il y a 1 an | |
README.md | il y a 1 an | |
index.js | il y a 1 an | |
package.json | il y a 1 an |
Pipe ReadStream to a wormhole.
const sendToWormhole = require('stream-wormhole');
const fs = require('fs');
const readStream = fs.createReadStream(__filename);
// ignore all error by default
sendToWormhole(readStream, true)
.then(() => console.log('done'));
// throw error
sendToWormhole(readStream, true)
.then(() => console.log('done'))
.catch(err => console.error(err));