UNPKG

incomplete-json-parser

Version:

A JSON parser that can parse incomplete JSON strings.

176 lines (101 loc) • 4.73 kB
# incomplete-json-parser > A JSON parser that can parse incomplete JSON strings. ## Demo 1. **Incomplete JSON** vs **Parse-able JSON** ![demo-small](https://github.com/1000ship/incomplete-json-parser/assets/2270565/a16c9078-a573-40dd-85cb-f2113b03eb56) 2. Application example <img src="https://github.com/1000ship/incomplete-json-parser/assets/2270565/e91ace5e-1d84-4f32-a3b7-73c1d8022073" alt="application-example" width="300" height="515" /> ## What is incomplete-json-parser? incomplete-json-parser is a TypeScript module that provides a streaming JSON parser. It can handle incomplete or chunked JSON data, making it useful for parsing JSON data that arrives in multiple parts or when dealing with large JSON files. The parser is designed to be flexible and can handle various scenarios, such as: - Incomplete JSON objects or arrays - JSON data split across multiple chunks - Incomplete string values ## Installation To install incomplete-json-parser, use the following command: ```bash npm install incomplete-json-parser yarn add incomplete-json-parser ``` ## Usage Here's an example of how to use incomplete-json-parser: ```typescript import { IncompleteJsonParser } from 'incomplete-json-parser'; const parser = new IncompleteJsonParser(); // Write incomplete JSON data to the parser parser.write('{"name": "John", "age": 30, "city": "New'); parser.write(' York", "hobbies": ["reading", "gaming"'); // Get the parsed JavaScript object const result = parser.getObjects(); console.log(result); // Output: { name: 'John', age: 30, city: 'New York', hobbies: ['reading', 'gaming'] } ``` In this example, we create an instance of the `IncompleteJsonParser` and write incomplete JSON data to it using the `write` method. We can write data in multiple chunks, simulating a streaming scenario. Once we have written all the necessary data, we call the `getObjects` method to parse the accumulated JSON data and retrieve the resulting JavaScript object. ## API ### `new IncompleteJsonParser()` Creates a new instance of the `IncompleteJsonParser`. ### `static parse(chunk: string): any` A static method that allows parsing JSON data in a single step. It creates a new instance of `IncompleteJsonParser`, writes the provided `chunk` to it, and returns the parsed JavaScript object. ### Using the `parse` Static Method ```typescript const json = '{"name": "Alice", "age": 25, "city": "London"'; const result = IncompleteJsonParser.parse(json); console.log(result); // Output: { name: 'Alice', age: 25, city: 'London' } ``` ### `reset(): void` Resets the parser's internal state, clearing the buffer, accumulator, pointer, and path. This method is useful when you want to reuse the same parser instance for parsing multiple JSON objects. ### `write(chunk: string): void` Writes a chunk of JSON data to the parser's internal buffer. ### `getObjects(): any` Parses the accumulated JSON data and returns the parsed JavaScript object. ## Examples Here are a few more examples demonstrating the capabilities of incomplete-json-parser: ### Handling Incomplete JSON Objects ```typescript const parser = new IncompleteJsonParser(); parser.write('{"name": "Alice", "age": 25, "city": "London"'); const result = parser.getObjects(); console.log(result); // Output: { name: 'Alice', age: 25, city: 'London' } ``` ### Handling Incomplete JSON Arrays ```typescript const parser = new IncompleteJsonParser(); parser.write('["apple", "banana", "orange"'); const result = parser.getObjects(); console.log(result); // Output: ['apple', 'banana', 'orange'] ``` ### Handling Incomplete String Values ```typescript const parser = new IncompleteJsonParser(); parser.write('{"message": "Hello, world!'); const result = parser.getObjects(); console.log(result); // Output: { message: 'Hello, world!' } ``` ### Handling `null` Values with Different Lengths ```typescript const parser = new IncompleteJsonParser(); parser.write('{"value": n'); const result1 = parser.getObjects(); console.log(result1); // Output: { value: null } parser.write('{"value": nu'); const result2 = parser.getObjects(); console.log(result2); // Output: { value: null } ``` ## Author šŸ‘¤ **Dante Chun** * Website: https://dante.company * Github: [@1000ship](https://github.com/1000ship) ## šŸ¤ Contributing Contributions, issues and feature requests are welcome!<br />Feel free to check [issues page](https://github.com/1000ship/incomplete-json-parser/issues). ## Show your support Give a ā­ļø if this project helped you! ## šŸ“ License Copyright Ā© 2024 [Dante Chun](https://github.com/1000ship).<br /> This project is [MIT](https://github.com/1000ship/react-scroll-motion/blob/master/LICENSE) licensed.