Gathering detailed insights and metrics for pull-paramap
Gathering detailed insights and metrics for pull-paramap
npm install pull-paramap
Typescript
Module System
Node Version
NPM Version
76.1
Supply Chain
79.5
Quality
77.8
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
1,053,144
Last Day
338
Last Week
1,642
Last Month
5,800
Last Year
79,124
10 Stars
44 Commits
4 Forks
2 Watching
1 Branches
11 Contributors
Minified
Minified + Gzipped
Latest Version
1.2.2
Package Id
pull-paramap@1.2.2
Size
3.09 kB
NPM Version
4.2.0
Node Version
7.8.0
Publised On
15 Apr 2017
Cumulative downloads
Total Downloads
Last day
6.6%
338
Compared to previous day
Last week
-5.1%
1,642
Compared to previous week
Last month
23.7%
5,800
Compared to previous month
Last year
-50.3%
79,124
Compared to previous year
1
4
parallel mapping pull-stream.
1var pull = require('pull-stream') 2var paramap = require('pull-paramap') 3 4pull( 5 pull.values([....]), 6 //perform an async job in parallel, 7 //but return results in the same order as they went in. 8 paramap(function (data, cb) { 9 asyncJob(data, cb) 10 }, width), //optional number. 11 //limits stream to process width items at once 12 pull.collect(cb) 13) 14 15pull( 16 pull.values([....]), 17 //perform an async job in parallel, 18 //and return results in the order they arrive 19 paramap(function (data, cb) { 20 asyncJob(data, cb) 21 }, null, false), // optional flag `inOrder`, default true 22 pull.collect(cb) 23)
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 3/30 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-01-27
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