0.1.25 • Published 7 months ago
newline-async-iterator v0.1.25
newline-async-iterator
Line-by-line async iterator for the browser and node
Example 1: Parse json line by line
import newlineIterator from "newline-async-iterator";
import "isomorphic-fetch";
import responseIterator from "response-iterator";
const res = await fetch(
"https://raw.githubusercontent.com/kmalakoff/newline-async-iterator/master/package.json",
);
const lines = [];
for await (const line of newlineIterator(responseIterator<Uint8Array>(res)))
lines.push(line);
console.log(JSON.parse(lines.join("\r\n")).name); // "newline-async-iterator"
Documentation
0.1.10
8 months ago
0.1.11
8 months ago
0.1.12
8 months ago
0.1.13
8 months ago
0.1.14
8 months ago
0.1.20
8 months ago
0.1.21
8 months ago
0.1.22
7 months ago
0.1.23
7 months ago
0.1.24
7 months ago
0.1.25
7 months ago
0.1.16
8 months ago
0.1.8
8 months ago
0.1.17
8 months ago
0.1.7
8 months ago
0.1.18
8 months ago
0.1.19
8 months ago
0.1.2
3 years ago
0.1.4
3 years ago
0.1.3
3 years ago
0.1.6
3 years ago
0.1.5
3 years ago
0.1.1
4 years ago
0.1.0
4 years ago