0.7.1 • Published 6 years ago

compare-files v0.7.1

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

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.
0.7.1

6 years ago

0.7.0

6 years ago

0.6.0

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago