0.3.0 • Published 9 months ago

@xtao-org/jsonstrum v0.3.0

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

JsonStrum.js

A high-level wrapper over JsonHilo which emits fully parsed objects and arrays.

Should work in any modern JavaScript runtime: Node.js, Bun, Deno, the browser.

Install

Node.js and Bun

An npm package is available:

npm i @xtao-org/jsonstrum

Deno or the browser

Import modules directly from a CDN such as jsDelivr:

import {JsonHigh} from 'https://cdn.jsdelivr.net/gh/xtao-org/jsonstrum@v0.2.3/mod.js'

Alternatively in Deno you can also import the npm package:

import {JsonStrum} from 'npm:@xtao-org/jsonstrum'

Quickstart

// if using Deno import from 'npm:@xtao-org/jsonstrum'
import {JsonStrum} from '@xtao-org/jsonstrum'

const s = JsonStrum({
  object: (object) => console.log('object', object),
  array: (array) => console.log('array', array),
  // will only parse and emit objects at this level of nesting 
  level: 1,
})

s.chunk(`
[
  {"name": "Alice", "color": "red", "count": 5},
  {"name": "Bob", "color": "blue", "count": 4},
]
`)
/* OUTPUT:
object { name: "Alice", color: "red", count: 5 }
object { name: "Bob", color: "blue", count: 4 }
*/