| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/doc/node-resumer/ |
Upload File : |
# 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](https://npmjs.com/package/through).
[](http://ci.testling.com/substack/resumer)
[](http://travis-ci.org/substack/resumer)
# example
``` js
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
``` js
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](https://npmjs.com/package/through).
# install
With [npm](https://npmjs.org) do:
```
npm install resumer
```
# license
MIT