gendiff-s225

0.8.0 • Public • Published

gendiff

Maintainability Test Coverage Build Status

Setup

clone git and make installation

$ make install

or install binaries from npm

$ npm install -g gendiff-s225

Usage

  • program supports four input file types: .yml .yaml .ini .json
  • $ gendiff before.json after.json get diff with default output
  • $ gendiff before.yml after.yml --format json get full diff tree with JSON output
  • -f | --format [type] formating output to default, json or plain
  • -h | --help help page
  • -V | --version program version

Example

before.json

{
  "group1": {
    "baz": "bas",
    "foo": "bar",
    "nest": {
      "key": "value"
    }
  },
  "group2": {
    "abc": "12345"
  }
}

after.json

{
  "group1": {
    "foo": "bar",
    "baz": "bars",
    "nest": "str"
  },

  "group3": {
    "fee": "100500"
  }
}

Default output

$ gendiff before.json after.json

{
    group1: {
      - baz: bas
      + baz: bars
        foo: bar
      - nest: {
            key: value
        }
      + nest: str
    }
  - group2: {
        abc: 12345
    }
  + group3: {
        fee: 100500
    }
}

Plain output

$ gendiff before.json after.json -f plain

Property 'group1.baz' was updated. From 'bas' to 'bars'
Property 'group1.nest' was updated. From complex value to 'str'
Property 'group2' was removed
Property 'group3' was added with complex value

JSON output

$ gendiff before.json after.json -f json

[
  {
    "key": "group1",
    "type": "branch",
    "children": [
      {
        "key": "baz",
        "type": "modified",
        "oldValue": "bas",
        "newValue": "bars"
      },
      {
        "key": "foo",
        "type": "unchanged",
        "value": "bar"
      },
      {
        "key": "nest",
        "type": "modified",
        "oldValue": {
          "key": "value"
        },
        "newValue": "str"
      }
    ]
  },
  {
    "key": "group2",
    "type": "deleted",
    "value": {
      "abc": "12345"
    }
  },
  {
    "key": "group3",
    "type": "inserted",
    "value": {
      "fee": "100500"
    }
  }
]

Readme

Keywords

Package Sidebar

Install

npm i gendiff-s225

Weekly Downloads

3

Version

0.8.0

License

ISC

Unpacked Size

33.3 kB

Total Files

8

Last publish

Collaborators

  • shadow_doct0r