compare-files

0.7.1 • Public • Published

Build Status Maintainability

About

Compares two files, shows how they differ.

Installation

> npm install -g compare-files

Usage

Let's say you have two json files:

file1.json

{
    "host": "hexlet.io",
    "timeout": 50,
    "proxy": "123.234.53.22"
}

file2.json

{
    "timeout": 20,
    "verbose": true,
    "host": "hexlet.io"
}

To find out the differences between those two files, run gendiff in the terminal with paths to the files. For example:

> gendiff file1.json file2.json --format plain
Property 'timeout' was updated from '50' to '20'
Property 'proxy' was removed
Property 'verbose' was added with 'true'

Supported formats

  • json,
  • yaml,
  • ini.

Output formats

  • plain text,
  • json.

Dependencies (4)

Dev Dependencies (10)

Package Sidebar

Install

npm i compare-files

Weekly Downloads

1

Version

0.7.1

License

ISC

Unpacked Size

25.6 kB

Total Files

8

Last publish

Collaborators

  • buyfn