deno.land / std@0.177.1 / encoding / json / _stringify.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
/** Optional object interface for `JsonStringifyStream`. */export interface StringifyStreamOptions { /** Prefix to be added after stringify. * * @default {""} */ readonly prefix?: string; /** Suffix to be added after stringify. * * @default {"\n"} */ readonly suffix?: string; /** Controls the buffer of the TransformStream used internally. Check https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream. */ readonly writableStrategy?: QueuingStrategy<unknown>; /** Controls the buffer of the TransformStream used internally. Check https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream. */ readonly readableStrategy?: QueuingStrategy<string>;}
/** * Convert each chunk to JSON string. * * This can be used to stringify [JSON lines](https://jsonlines.org/), [NDJSON](http://ndjson.org/), [JSON Text Sequences](https://datatracker.ietf.org/doc/html/rfc7464), and [Concatenated JSON](https://en.wikipedia.org/wiki/JSON_streaming#Concatenated_JSON). * You can optionally specify a prefix and suffix for each chunk. The default prefix is "" and the default suffix is "\n". * * @example * ```ts * import { readableStreamFromIterable } from "https://deno.land/std@$STD_VERSION/streams/readable_stream_from_iterable.ts"; * import { JsonStringifyStream } from "https://deno.land/std@$STD_VERSION/encoding/json/stream.ts"; * * const file = await Deno.open("./tmp.jsonl", { create: true, write: true }); * * readableStreamFromIterable([{ foo: "bar" }, { baz: 100 }]) * .pipeThrough(new JsonStringifyStream()) // convert to JSON lines (ndjson) * .pipeThrough(new TextEncoderStream()) // convert a string to a Uint8Array * .pipeTo(file.writable) * .then(() => console.log("write success")); * ``` * * @example * To convert to [JSON Text Sequences](https://datatracker.ietf.org/doc/html/rfc7464), set the * prefix to the delimiter "\x1E" as options. * ```ts * import { readableStreamFromIterable } from "https://deno.land/std@$STD_VERSION/streams/readable_stream_from_iterable.ts"; * import { JsonStringifyStream } from "https://deno.land/std@$STD_VERSION/encoding/json/stream.ts"; * * const file = await Deno.open("./tmp.jsonl", { create: true, write: true }); * * readableStreamFromIterable([{ foo: "bar" }, { baz: 100 }]) * .pipeThrough(new JsonStringifyStream({ prefix: "\x1E", suffix: "\n" })) // convert to JSON Text Sequences * .pipeThrough(new TextEncoderStream()) * .pipeTo(file.writable) * .then(() => console.log("write success")); * ``` * * @example * If you want to stream [JSON lines](https://jsonlines.org/) from the server: * ```ts * import { serve } from "https://deno.land/std@$STD_VERSION/http/server.ts"; * import { JsonStringifyStream } from "https://deno.land/std@$STD_VERSION/encoding/json/stream.ts"; * * // A server that streams one line of JSON every second * serve(() => { * let intervalId: number | undefined; * const readable = new ReadableStream({ * start(controller) { * // enqueue data once per second * intervalId = setInterval(() => { * controller.enqueue({ now: new Date() }); * }, 1000); * }, * cancel() { * clearInterval(intervalId); * }, * }); * * const body = readable * .pipeThrough(new JsonStringifyStream()) // convert data to JSON lines * .pipeThrough(new TextEncoderStream()); // convert a string to a Uint8Array * * return new Response(body); * }); * ``` */export class JsonStringifyStream extends TransformStream<unknown, string> { constructor({ prefix = "", suffix = "\n", writableStrategy, readableStrategy, }: StringifyStreamOptions = {}) { super( { transform(chunk, controller) { controller.enqueue(`${prefix}${JSON.stringify(chunk)}${suffix}`); }, }, writableStrategy, readableStrategy, ); }}
std

Version Info

Tagged at
11 months ago