playback-stream
v1.0.0
Published
A stream whose contents can be played back many times
Downloads
664
Maintainers
Readme
playback-stream
A stream whose contents can be played back many times by storing its contents in memory.
Install:
npm install playback-stream
const PlaybackStream = require('playback-stream');
const playback = new PlaybackStream();
request('https://placekitten.com/600/400').pipe(playback);
http.createServer((req, resp) => {
resp.writeHead(200, { 'Content-Type': 'image/jpeg' });
playback.newReadableSide().pipe(resp);
}).listen(8080);
License
MIT