import { ConcatenatedJsonParseStream } from "https://deno.land/std@0.163.0/encoding/json/stream.ts";
stream to parse Concatenated JSON.
import { ConcatenatedJsonParseStream } from "https://deno.land/std@0.163.0/encoding/json/stream.ts";
const url = "https://deno.land/std@0.163.0/encoding/testdata/json/test.concatenated-json";
const { body } = await fetch(url);
const readable = body!
.pipeThrough(new TextDecoderStream())
.pipeThrough(new ConcatenatedJsonParseStream());
for await (const data of readable) {
console.log(data);
}
Constructors
new
ConcatenatedJsonParseStream(unnamed 0?: ParseStreamOptions)Properties
readonly
readable: ReadableStream<JsonValue>readonly
writable: WritableStream<string>