0.1.25 • Published 10 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
11 months ago
0.1.11
11 months ago
0.1.12
11 months ago
0.1.13
11 months ago
0.1.14
11 months ago
0.1.20
10 months ago
0.1.21
10 months ago
0.1.22
10 months ago
0.1.23
10 months ago
0.1.24
10 months ago
0.1.25
10 months ago
0.1.16
10 months ago
0.1.8
11 months ago
0.1.17
10 months ago
0.1.7
11 months ago
0.1.18
10 months ago
0.1.19
10 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