Skip to content

JSON merge CLI tool is used for merging JSON file with custom params via cli.

Notifications You must be signed in to change notification settings

tomas-sereikis/json-merge-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

json-merge-cli

JSON merge CLI tool is used for merging JSON file with custom params via cli.

Installing

npm install json-merge-cli -g

Usage

Source file some.json

{
  "file": "some.json",
  "test": "yes"
}
json-merge-cli --src some.json --dest .some.json --params.test no --params.other.test yes

Output file .some.json

{
  "file": "some.json",
  "test": "no",
  "other": {
    "test": "yes"
  }
}

About

JSON merge CLI tool is used for merging JSON file with custom params via cli.

Resources

Stars

Watchers

Forks

Packages

No packages published