Gathering detailed insights and metrics for reader-line-iterator
Gathering detailed insights and metrics for reader-line-iterator
Gathering detailed insights and metrics for reader-line-iterator
Gathering detailed insights and metrics for reader-line-iterator
Convert a reader into a async iterator emitting text lines
npm install reader-line-iterator
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
0BSD License
1,392 Commits
2 Watchers
3 Branches
2 Contributors
Updated on Jul 15, 2025
Latest Version
1.2.2
Package Id
reader-line-iterator@1.2.2
Unpacked Size
6.66 kB
Size
2.69 kB
File Count
5
NPM Version
10.9.2
Node Version
22.15.0
Published on
May 06, 2025
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
6
Convert a reader into a async iterator emitting text lines
1import { lineIterator } from "reader-line-iterator"; 2 3const result = await fetch("http://somewhere/mytext.txt"); 4 5for await (const line of lineIterator(result.body.getReader())) { 6 console.log(line); 7}
Extracts lines from a reader and delivers them as an async iterator.
reader
(ReadableStreamDefaultReader | ReadableStreamBYOBReader) decoder
TextDecoder (optional, default new TextDecoder()
)Returns AsyncIterable<string> extracted lines
With npm do:
1npm install reader-line-iterator
BSD-2-Clause
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
1 existing vulnerabilities detected
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 0/6 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
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