Code Monkey home page Code Monkey logo

json-keys-diff's Introduction

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.

json-keys-diff's People

Contributors

danteay avatar draftea-bot avatar

Watchers

Joe Cohen avatar Ian Butelmann avatar Gabriel Browarnik avatar Ignacio Daniel Alvarez avatar Agustin de Sautu Riestra avatar Yonatan Andres Montoya Mejia avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.