json-keys-diff

0.0.8 • Public • Published

json-keys-diff

This is a simple commandline tool to check if exists differences between the keys of 2 or more json files, check what keys are missing and report by each file what should be the differences.

Installation

npm i --global json-keys-diff

Usage

Compare specific files

# Compare 2 or more specific files
jkdiff files ../some/path/dev.json ../some/path/prod.json 

# Result
#
# Differences found on the next files:
# ../some/path/prod.json 
# - timestamp

Compare all matching files inside a specific path

# Compare all files that its name match with the regexp pattern provided
jkdiff folder ../some/path -p "\\.json$"  

# Result
#
# Differences found on the next files:
# ../some/path/prod.json 
# - timestamp

Using ignore rules

You can configure ignore rules to omit specific missing keys if the file that is being evaluated match with the regexp defined on the ignore file:

Ignore file

[
  {
    "pattern": "file-*\\.json",
    "ignoreKeys": ["key1", "key2"]
  },
  {
    "pattern": "file2-*\\.json",
    "ignoreKeys": ["key11", "key22"]
  },
  {
    "pattern": "some/path",
    "ignoreKeys": ["key11", "key22"]
  }
]

Command to use ignore file

# Using folder diff
jkdiff folder -i ignore-file.json ../some/path -p "\\.json$" 

# Using files diff
jkdiff files -i ignore-file.json file1.json file2.json

If the option -i or --ignore-file is not pass to the command, it will search for a default ignore file called .json-diff-ignore.json on the execution path.

Readme

Keywords

none

Package Sidebar

Install

npm i json-keys-diff

Weekly Downloads

3

Version

0.0.8

License

MIT

Unpacked Size

35.5 kB

Total Files

15

Last publish

Collaborators

  • draftea-infra