tiny-jsonc

v1.0.1
An absurdly small JSONC parser.
jsonc json comments trailing commas commas parser parse

Tiny JSONC

An absurdly small JSONC parser.

This library works simply by using regexs to strip out comments first and trailing commas second, in order to account for a trailing comma followed by a comment, and then just passing the output to JSON.parse.

If you need additional APIs to manipulate JSONC, better error messages, or a full-blown parser, I'd recommend using json-simple-parser instead.

Install

npm install --save tiny-jsonc

Usage

import JSONC from 'tiny-jsonc';

const source = `
  { // This is an example
    "foo": 123,
    /* TRAILING COMMAS */
    "bar": [1, 2, 3,],
  }
`;

const result = {
  foo: 123,
  bar: [1, 2, 3]
};

JSONC.parse ( source ); // => returns an object that's deeply equal to `result`

License

MIT © Fabio Spampinato

npm i tiny-jsonc

Metadata

  • Unknown
  • Whatever
  • Unknown
  • released 1/19/2023

Downloads

Maintainers