resumer / 0.0.0 last updated 3 years ago created on May 17th 2013

Install

npm install --save resumer

Clone

git clone git@github.com:substack/resumer.git

dependencies

main through 2.3.8 MIT

maintainers

substack substack

versions

0.0.0 3 years ago substack
20748 Downloads yesterday.

readme

resumer

Return a through stream that starts out paused and resumes on the next tick, unless somebody called .pause().

This module has the same signature as through.

browser support

build status

example

1
2
3
4
5
6
7
8
9
var resumer = require('resumer');
var s = createStream();
s.pipe(process.stdout);

function createStream () {
    var stream = resumer();
    stream.queue('beep boop\n');
    return stream;
}
$ node example/resume.js
beep boop

methods

var resumer = require('resumer')

resumer(write, end)

Return a new through stream from write and end, which default to pass-through .queue() functions if not specified.

The stream starts out paused and will be resumed on the next tick unless you call .pause() first.

write and end get passed directly through to through.

install

With npm do:

npm install resumer

license

MIT

Resolving all dependencies.. This could take a while as our cache is not yet fully warmed up.