Gathering detailed insights and metrics for @ljharb/resumer
Gathering detailed insights and metrics for @ljharb/resumer
Gathering detailed insights and metrics for @ljharb/resumer
Gathering detailed insights and metrics for @ljharb/resumer
npm install @ljharb/resumer
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
2 Stars
30 Commits
2 Watching
1 Branches
1 Contributors
Updated on 03 Sept 2023
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
0.6%
34,880
Compared to previous day
Last week
4%
197,644
Compared to previous week
Last month
7.8%
815,994
Compared to previous month
Last year
595.1%
8,056,498
Compared to previous year
Note: This package is a fork of https://npmjs.com/resumer, and builds off of it.
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.
1var resumer = require('resumer'); 2var s = createStream(); 3s.pipe(process.stdout); 4 5function createStream () { 6 var stream = resumer(); 7 stream.queue('beep boop\n'); 8 return stream; 9}
$ node example/resume.js
beep boop
1var resumer = require('@ljharb/resumer')
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.
With npm do:
npm install @ljharb/resumer
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
GitHub workflow tokens follow principle of least privilege
Details
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More