Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liammartens/ndjson-stream-parser


https://github.com/liammartens/ndjson-stream-parser

Last synced: 11 days ago
JSON representation

Awesome Lists containing this project

README

        

# NDJSON Stream Parser

Example
```js
import { JsonStreamBuffer } from 'ndjson-stream-parser';

const buff = new JsonStreamBuffer();
buff.$e.on('data', console.log);
buff.feed('{"name":"');
buff.feed('Liam"}\n{');
```

Output:
```json
{"data": {"name": "Liam"}}
```