3.1.0 • Published 2 months ago

schema-stream v3.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

schema-stream

GitHub Actions Status NPM Version

schema-stream is a utility for parsing streams of JSON data. It provides a safe-to-read-from stubbed version of the data before the stream has fully completed. This utility is essential for handling large JSON streams efficiently and is built on top of Zod schema validation.

Features

  • Stream JSON data parsing with partial data availability.
  • Zod schema validation for robust data handling.
  • Extensible configuration for customized parsing needs.

Installation

npm install schema-stream zod

Basic Usage

To use schema-stream, create a new instance of the class, passing in a Zod schema and optional default data. Then, call the parse method on the instance to parse a JSON stream.

import { SchemaStream } from 'schema-stream';
import { z } from 'zod';

const schema = z.object({
  someString: z.string(),
  someNumber: z.number()
});

const response = await getSomeStreamOfJson();

const parser = new SchemaStream(schema, {
  someString: "default string"
});

const streamParser = parser.parse({});

response.body?.pipeThrough(parser);

const reader = streamParser.readable.getReader();
const decoder = new TextDecoder();
let result = {};

while (!done) {
  const { value, done: doneReading } = await reader.read();
  done = doneReading;

  if (done) {
    console.log(result);
    break;
  }

  const chunkValue = decoder.decode(value);
  result = JSON.parse(chunkValue);
}

Note

A lot of the internal parser logic was forked from streamparser-json. The primary difference is the requirement of a Zod schema and optional default data, allowing for a fully stubbed version of the expected data to be returned before the stream has completed.

Related Packages

  • @hackdance/hooks: A set of React hooks for working with streams, including a use-json-stream hook that uses schema-stream.
  • @hackdance/agents: Another set of React hooks for stream data handling.

Contributing

Contributions to schema-stream are always welcome, whether it be improvements to the documentation or new functionality. Please feel free to open an issue or create a pull request.

License

MIT © hack-dance

3.1.0

2 months ago

3.0.0

3 months ago

2.1.0

4 months ago

2.0.1

4 months ago

2.0.0

4 months ago

1.6.0

5 months ago

1.4.1

5 months ago

1.4.0

5 months ago

1.3.0

5 months ago

1.2.0

5 months ago

1.2.1

5 months ago

1.1.0

5 months ago

1.0.0

6 months ago

0.0.2

7 months ago

0.0.1

7 months ago