@whi/json
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

Extending JSON functionality

This module is intended to extend the built-in JSON object with easier support for bytes, key-ordering, and debugging.

Overview

Existing JSON libraries

  • json-stable-stringify - doesn't make use of the native JSON.stringify
  • fast-safe-stringify - only addresses the circular reference issue
  • json-serializer - lack of support/documentation and hasn't been touched since 2018
  • json-serialize - lack of support/features and hasn't been touched since 2015

Some of these libraries would have been fine for what they do, but it would have been inefficient to let each library walk the entire object just to do there 1 thing.

Features

  • Serialize/deserialize to JSON string
  • Serialize/deserialize to JSON byte array (Uint8Array)
  • Serialize/deserialize handles Typed Array Views & Buffer
  • Serialize/deserialize handles Date objects
  • Object key ordering for deterministic serializing
  • Debugging format for displaying human-readable JSON-like object dumps
  • Debugging formatter handles circular references

Install

npm i @whi/json

Usage

import json from '@whi/json';

let input = {
    id: Buffer.from("Hello World")
};

json.stringify( input );
// '{"id":{"data":[72,101,108,108,111,32,87,111,114,108,100],"type":"Buffer"}}'

json.debug( input );
// '{
//     "id": <Buffer 48 65 6c 6c 6f 20 57 6f 72 6c 64>
// }'

json.serialize( input );
// Uint8Array(74) [
//   123,  34, 105, 100, 34, 58, 123,  34, 100,  97, 116,  97,
//    34,  58,  91,  55, 50, 44,  49,  48,  49,  44,  49,  48,
//    56,  44,  49,  48, 56, 44,  49,  49,  49,  44,  51,  50,
//    44,  56,  55,  44, 49, 49,  49,  44,  49,  49,  52,  44,
//    49,  48,  56,  44, 49, 48,  48,  93,  44,  34, 116, 121,
//   112, 101,  34,  58, 34, 66, 117, 102, 102, 101, 114,  34,
//   125, 125
// ]

let str = json.stringify( input );
let bytes = json.serialize( input );

// Parse can take JSON or JSON-bytes
json.parse( str );
// { id: <Buffer 48 65 6c 6c 6f 20 57 6f 72 6c 64> }
json.parse( bytes );
// { id: <Buffer 48 65 6c 6c 6f 20 57 6f 72 6c 64> }

json.deserialize( bytes );
// { id: <Buffer 48 65 6c 6c 6f 20 57 6f 72 6c 64> }

// Deserialize can only take bytes
json.deserialize( str );
// TypeError [ERR_INVALID_ARG_TYPE]: The "input" argument must be an instance of ArrayBuffer or ArrayBufferView. Received type string ('{"id":{"data":[72,101,10...)

API Reference

See docs/API.md

Contributing

See CONTRIBUTING.md

Readme

Keywords

none

Package Sidebar

Install

npm i @whi/json

Weekly Downloads

37

Version

0.2.1

License

ISC

Unpacked Size

66.8 kB

Total Files

8

Last publish

Collaborators

  • brisebom