🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

fluid-diff

Package Overview
Dependencies
Maintainers
9
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluid-diff

A library for describing the differences between two JSON structures.

1.0.1
latest
Source
npm
Version published
Weekly downloads
17
142.86%
Maintainers
9
Weekly downloads
 
Created
Source

fluid-diff

This package is designed to "diff" two pieces of data and produce output that can be used to explore the differences.

There is a standard for representing differences between JSON structures as a patch, but the goal there is to produce output that can be used to faithfully "undo" and "redo" a given set of changes.

Our goal is to produce a more expansive structure that includes:

  • Information that has not changed.
  • Information that has been removed.
  • Information that has been added.
  • Detailed information about changes to a single string.

The focus here is not on changes to the deep structure, only changes in values (strings, numbers, etc.) are represented. This is intended to provide just enough information to present an annotated representation of a given set of changes. For this purpose, there are Handlebars templates provided in this package, which can be used with fluid-handlebars to convert the "diff" JSON structure produced by this package into:

  • text
  • HTML
  • markdown

Installation

To add this package to your project, use a command like npm install --save fluid-diff.

Further Reading

  • For more details about generating a "diff", see the list of available functions.
  • For examples of using a "diff" on its own and in combination with handlebars templates, see the tutorial.

FAQs

Package last updated on 07 Sep 2021

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