A streaming JSON parser for Node.js that works with superqueue. This parser is designed to work with streaming JSON data, like live generating JSON by an LLM where you want to display it in real-time as it's being generated.
Note: This is not meant to work with files that are too large to fit in memory.
// yarn
yarn add superqueue@https://github.com/libkakashi/json-stream
// npm
npm i https://github.com/libkakashi/json-stream
import Queue from 'superqueue'; // https://github.com/libkakashi/superqueue
import JsonParser from 'json-stream';
const queue = new Queue<string>();
// Make sure to keep every property optional since you never know when they'll be populated.
const parser = new JsonParser<{name?: string; description?: string}>(queue);
const res = await axios.get('streaming-json-endpoint', {
responseType: 'stream',
});
const stream = res.data;
stream.on('data', chunk => {
queue.push(chunk);
// current gets name and description properties dynamically populated as more chunks are received.
const current = await jsonStream.resolve();
});
stream.on('end', () => queue.end());