|
vor 2 Jahren | |
---|---|---|
.. | ||
History.md | vor 2 Jahren | |
LICENSE | vor 2 Jahren | |
README.md | vor 2 Jahren | |
index.js | vor 2 Jahren | |
package.json | vor 2 Jahren |
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));