Gathering detailed insights and metrics for rx-to-iterall
Gathering detailed insights and metrics for rx-to-iterall
Gathering detailed insights and metrics for rx-to-iterall
Gathering detailed insights and metrics for rx-to-iterall
npm install rx-to-iterall
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3 Stars
14 Commits
2 Watchers
50 Branches
1 Contributors
Updated on Jul 27, 2023
Latest Version
1.0.2
Package Id
rx-to-iterall@1.0.2
Unpacked Size
26.41 kB
Size
3.64 kB
File Count
7
NPM Version
5.7.1
Node Version
8.10.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
6
Convert rxjs Observables into iterall AsyncIterators
1npm i --save rx-to-iterall
Convert an rxjs Observable into an iterall AsyncIterator
1const forAwaitEach = require('iterall').forAwaitEach 2const Observable = require('rxjs').Observable 3const rxjsToIterall = require('rx-to-iterall') 4 5const observable = Observable.from([1, 2, 3]) 6const asyncIterator = rxjsToIterall(observable) 7 8const results = [] 9await forAwaitEach(asyncIterator, (data) => { 10 results.push(data) 11}) 12 13console.log(results) // [1, 2, 3] (observable values)
Extend ObservableAsyncIterator with custom behavior
1const ObservableAsyncIterator = require('rx-to-iterall') 2 3class FooAsyncIterator extends ObservableAsyncIterator { 4 // ... 5}
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/8 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
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
Reason
79 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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