gendiff-s225
v0.8.0
Published
console diff tool for config files
Downloads
21
Readme
gendiff
Setup
clone git and make installation
$ make installor install binaries from npm
$ npm install -g gendiff-s225Usage
- program supports four input file types:
.yml.yaml.ini.json $ gendiff before.json after.jsonget diff with default output$ gendiff before.yml after.yml --format jsonget full diff tree with JSON output-f | --format [type]formating output to default, json or plain-h | --helphelp page-V | --versionprogram 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 valueJSON 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"
}
}
]