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