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