Gathering detailed insights and metrics for proq
Gathering detailed insights and metrics for proq
Gathering detailed insights and metrics for proq
Gathering detailed insights and metrics for proq
npm install proq
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
1 Stars
33 Commits
3 Watching
58 Branches
2 Contributors
Updated on 23 Aug 2017
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
1
Compared to previous week
Last month
66.7%
10
Compared to previous month
Last year
-44%
116
Compared to previous year
Promise Sequence Module.
Terse and simple promise sequences for those who don't want to reinvent the wheel like i did :rocket: :whale: :boom:.
npm i proq
npm i --save proq // to put it into your package.json
1import proq from 'proq';
2
3function magic1(params) {
4 // make some magic here ...
5 return new Promise(resolve => resolve(/* some result of our magic above */));
6}
7
8/* params is result of magic from magic1 */
9function magic2(params) {
10 // more magic here ...
11 return new Promise(resolve => resolve(/* some result of our magic2 */));
12}
13
14proq([magic1, magic2], { unicorns: 10 } /* initial params */)
15 .then(resultOfAllMagic => console.log(resultOfAllMagic));
16
Functions magic1
and magic2
will be called sequentially and result of each one will be passed to next one.
Stanislav Sysoev d4rkr00t@gmail.com https://github.com/d4rkr00t
Contributing are highly welcome! This repos is commitizen friendly — please read about it here.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 9/26 approved changesets -- score normalized to 3
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
license file not detected
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 2024-11-25
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