1.0.2 • Published 6 years ago

canonicalize-json v1.0.2

Weekly downloads
14
License
MIT
Repository
github
Last release
6 years ago

Canonical JSON

This project has been taken from https://github.com/mirkok/canonical-json and has been modified.

The goal of this module is to implement a version of JSON.stringify that returns a canonical JSON format.

Canonical JSON means that the same object should always be stringified to the exact same string. JavaScripts native JSON.stringify does not guarantee any order for object keys when serializing:

Properties of non-array objects are not guaranteed to be stringified in any particular order. Do not rely on ordering of properties within the same object within the stringification.

Source: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/JSON/stringify

This module implements two alternative solutions to this problem:

  • index.js is based on Douglas Crockford's json2.js. It is modified to serialize object keys sorted on the fly.
  • index2.js recursively creates a copy of the object to sort its keys. The copy is then simply passed to native JSON.stringify

It currently exports the index.js version.

Typescript

Definition file for typescript has been written only for index.js and index2.js

Performance comparison

Performance of native JSON.stringify and the two alternative implementations that output keys sorted:

  • native JSON.stringify: 75 ms
  • js JSON.stringify with sorted keys (implementation): 308 ms
  • copy and native JSON.stringify with sorted keys (implementation): 291 ms

The tests were run in Node.js on a 2011 MacBook Pro. Performance test source: test/performance.js

Command Line Interface

To run this from the command line you can use canonical-json.js like so:

cat sample.json | ./canonical-json.js > sample-canonical.json

Links

  • CANON is a project with similar goals.