1. difflet
colorful diffs for javascript objects
difflet
Package: difflet
Created by: substack
Last modified: Fri, 11 Nov 2022 06:34:28 GMT
Version: 1.0.1
License: MIT
Downloads: 82,537
Repository: https://github.com/substack/difflet

Install

npm install difflet
yarn add difflet

difflet

Create colorful diffs for javascript objects.

example

string.js

 var difflet = require('difflet');

var s = difflet.compare({ a : 2, c : 5 }, { a : 3, b : 4 });
process.stdout.write(s);

output:

colorful output

colors.js

 var diff = require('difflet')({ indent : 2 });

var prev = {
    yy : 6,
    zz : 5,
    a : [1,2,3],
    fn : 'beep',
    c : { x : 7, z : 3 }
};

var next = {
    a : [ 1, 2, "z", /beep/, new Buffer(3) ],
    fn : function qqq () {},
    b : [5,6,7],
    c : { x : 8, y : 5 }
};

diff(prev, next).pipe(process.stdout);

output:

colorful output

green for inserts, blue for updates, red for deletes

methods

var difflet = require('difflet')

var diff = difflet(opts={})

Create a difflet from optional options opts.

With opts.start(type, stream) and opts.stop(type, stream),
you can write custom handlers for all the types of differences:
'inserted', 'updated', and 'deleted'.
By default green is used for insertions, blue for updates, and red for
deletions.

If opts.indent is set, output will span multiple lines and opts.indent
spaces will be used for leading whitespace.

If opts.comma === 'first' then commas will be placed at the start of lines.

Setting opts.comment to true will turn on comments with the previous
contents like this:

Setting opts.deepEqual allows a different equality function to be used. By default
deep-is is used.

object comments

diff(prev, next)

Return a stream with the colorful changes between objects prev and next.

diff.compare(prev, next)

Return a string with the colorful changes between prev and next.

difflet.compare(prev, next)

Return a string with the colorful changes between prev and next with the
default options.

install

With npm do:

npm install difflet

test

With npm do:

npm test

license

Copyright (C) 2012, 2013 James Halliday [email protected]

Licensed under the MIT license, see LICENSE for details.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code