JSON Autocomplete

A utility to incrementally build and complete JSON strings from potentially incomplete JSON append operations with caching capabilities.
Table of Contents
Features
- Incremental Building: Append parts of a JSON string incrementally and get the best possible valid JSON.
- String Handling: Correctly handles strings, escape characters, and nested structures.
- Error Checking: Detects unbalanced brackets and braces.
- Caching Capabilities: Efficiently manages the internal state to optimize performance.
Installation
You can install JSON Autocomplete via npm or Yarn:
npm install @bonniernews/json-autocomplete
yarn add @bonniernews/json-autocomplete
Usage
Basic Example
import { createJsonAutocomplete } from "@bonniernews/json-autocomplete";
const autocompleter = createJsonAutocomplete();
const part1 = '{"name": "Alice", "age": 30';
const completed1 = autocompleter.append(part1);
console.log(completed1);
const part2 = ', "address": {"street": "123 Main St';
const completed2 = autocompleter.append(part2);
console.log(completed2);
const part3 = '", "city": "Wonderland"}}';
const completed3 = autocompleter.append(part3);
console.log(completed3);
Using jsonAutocomplete
Helper
For simpler use cases, you can use the jsonAutocomplete
helper function which manages the autocompleter instance internally.
import { jsonAutocomplete } from "@bonniernews/json-autocomplete";
const incompleteJson1 = '{"isActive": true, "roles": ["admin", "user"';
const completedJson1 = jsonAutocomplete(incompleteJson1);
console.log(completedJson1);
const incompleteJson2 = ', "permissions": {"read": true, "write": false';
const completedJson2 = jsonAutocomplete(incompleteJson2);
console.log(completedJson2);
API Reference
createJsonAutocomplete()
Creates a new JSON autocompleter instance.
Returns
An object with the following method:
append(part: string): string
: Appends a fragment of JSON and returns the best possible valid JSON string constructed from all appended fragments.
Example
import { createJsonAutocomplete } from "@bonniernews/json-autocomplete";
const autocompleter = createJsonAutocomplete();
const jsonPart1 = '{"product": "Laptop", "price": 1200';
const completedJson1 = autocompleter.append(jsonPart1);
console.log(completedJson1);
const jsonPart2 = ', "specs": {"cpu": "Intel i7", "ram": "16GB"';
const completedJson2 = autocompleter.append(jsonPart2);
console.log(completedJson2);
const jsonPart3 = "}}";
const completedJson3 = autocompleter.append(jsonPart3);
console.log(completedJson3);
jsonAutocomplete
A helper function to incrementally autocomplete a JSON string without manually managing the autocompleter instance.
Parameters
incompleteJsonString: string
: The incomplete JSON string fragment.
autocompleter?: ReturnType<typeof createJsonAutocomplete>
: (Optional) An existing autocompleter instance. If not provided, a new one is created.
Returns
string
: The best possible valid JSON string constructed from all appended fragments.
Example
import { jsonAutocomplete } from "@bonniernews/json-autocomplete";
let completedJson = jsonAutocomplete('{"title": "Book"');
console.log(completedJson);
completedJson = jsonAutocomplete(', "author": "Jane Doe"');
console.log(completedJson);
completedJson = jsonAutocomplete("}");
console.log(completedJson);
Contributing
Contributions are welcome! Please follow these steps:
-
Fork the repository: Click the Fork button at the top right of the repository page.
-
Clone your fork:
git clone https://github.com/your-username/json-autocomplete.git
cd json-autocomplete
-
Install dependencies:
npm install
-
Create a new branch:
git checkout -b feature/YourFeature
-
Make your changes: Implement your feature or bug fix.
-
Lint and type-check:
npm run lint
npm run typecheck
-
Run tests:
npm test
-
Commit your changes:
git commit -m "Add your message here"
-
Push to your fork:
git push origin feature/YourFeature
-
Create a Pull Request: Go to the original repository and submit a pull request.
Code of Conduct
Please adhere to the Bonnier News Code of Conduct in all your interactions with the project.
License
This project is licensed under the MIT License. You are free to use, modify, and distribute it as per the license terms.
Support
If you encounter any issues or have questions, please open an issue on GitHub.
Note: This README assumes that the repository is hosted at https://github.com/BonnierNews/json-autocomplete
. Please update the links accordingly if the repository is located elsewhere.