1.0.0 • Published 8 years ago

playback-stream v1.0.0

Weekly downloads
50
License
MIT
Repository
github
Last release
8 years ago

playback-stream

NPM Version NPM Downloads Build Status Coverage Status Dependency Status

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