Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@broofa/jsondiff

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@broofa/jsondiff

Pragmatic, intuitive diffing and patching of JSON objects

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
114
decreased by-29.19%
Maintainers
1
Weekly downloads
 
Created
Source

@broofa/jsondiff

Pragmatic, intuitive diffing and patching of JSON objects

There are variety of modules available that can diff and patch JSON data structures. Here's a quick run down:

ModuleSizePatch formatNotes
@broofa/jsondiff0.7KOverlayReadable patches
deep-diff3.5KRFC9602-likeMost popular module
rfc96022KRFC9602See below
fast-json-patch4KRFC9602See below

The main difference between these modules is in the patch object structure. Most (all?) of the other modules use a structure based on or similar to RFC9602, which is composed of a series of operations that describe how to transform the target object. In contrast, the patches in this module act as an "overlay" that is copied onto the target object. This has the following tradeoffs:

  1. Readability - A structured patch is easier to read because it looks like the object it's modifying.
  2. Size - Operation-based patches have a lot of redundant keys and values that, again, making reading (and debugging) more difficult. This can also affect network performance in contexts where data is not compressed (e.g. websockets)
  3. Fault tolerance - Operation-based patches can fail if operations are applied out of order or if the target object does not have the expected structure.
  4. Wonky hack - Full disclosure: This module does require a small(?) hack to handle the cases where a value is deleted or an array changes. This may be off-putting to some readers. See comments about DROP and KEEP, below

Installation

npm install @broofa/jsondiff

Usage

const jsondiff = require('@broofa/jsondiff');

const before = {a: 'Hello', b: 'you', c: ['dark', 'crazy'], d: 'bastard'};
const after = {a: 'Hello', c: ['dark', 'mysterious'], d: 'world'};

// Create a patch
const patch = jsondiff.diff(before, after); // ⇨ { b: '-', c: [ '+', 'mysterious' ], d: 'world' }

// Apply it to the original
const patched = jsondiff.patch(before, patch); // ⇨ { a: 'Hello', c: [ 'dark', 'mysterious' ], d: 'world' }

// Get the expected result
assert.deepEqual(after, patched); // Passes!

API

jsondiff.diff(before, after)

Creates and returns a "patch object" that describes the differences between before and after. This object is suitable for use in patch().

jsondiff.patch(before, patchObject)

Applies patchObject to before and returns the result.

Note: Any result value that is deep-equal to it's before counterpart will reference simply reference the 'before' value. Thus, === can be used to test for deep equality.

jsondiff.mask(before, patchObject)

Similar to patch(), but omits values not defined in patchObject. I.e. Creates a version of before as "masked" by the patchObject.

jsondiff.merge(before, after)

Shorthand for patch(before, diff(before, after)). Useful for updating an mutating an object only where values have actually changed.

Patch Objects

Patch objects are JSON objects with the same structure (schema) as the object they apply to. Applying a patch is (almost) as simple as doing a deep copy of the patch onto the target object. There are two minor caveats:

  1. The special jsondiff.DROP ("-") string is used to indicate deleted values
  2. A changed array is always fully-specified but, for brevity, unchanged items are indicated by the special jsondiff.KEEP ("+") string

Note: The use of DROP and KEEP is, admittedly, a hack. If these exact string values appear in data outside of patch objects, diff() and patch() may not function correctly. That said, this is not expected to be an issue in real-world conditions. (Both strings include a "private use" Unicode character that should make them fairly unique.)


Markdown generated from src/README_js.md by RunMD Logo

Keywords

FAQs

Package last updated on 25 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc