What is json?
The 'json' npm package provides a simple command-line tool for working with JSON data. It allows users to easily manipulate JSON objects, extract specific fields, and format JSON data in a readable way.
What are json's main functionalities?
Extracting specific fields
This feature allows you to extract specific fields from a JSON file. In this example, it extracts the 'name' field from 'data.json'.
json -f data.json name
Pretty-printing JSON
This feature formats JSON data in a readable way with indentation. The '-i' flag is used to pretty-print the JSON content of 'data.json'.
json -i data.json
Updating JSON data
This feature allows you to update JSON data directly from the command line. The '-I' flag is used to modify the file in place, and the '-e' flag is used to execute the provided JavaScript expression to update the 'name' field.
json -I -f data.json -e 'this.name="newName"'
Other packages similar to json
jq
jq is a lightweight and flexible command-line JSON processor. It allows for complex filtering, transformation, and extraction of JSON data. Compared to 'json', jq offers more advanced querying capabilities and a more powerful syntax for manipulating JSON data.
jsonfile
jsonfile is a simple module for reading and writing JSON files. It provides a straightforward API for interacting with JSON files in a Node.js environment. While 'jsonfile' focuses on file operations, 'json' provides command-line utilities for JSON manipulation.
json2csv
json2csv is a tool for converting JSON data to CSV format. It is useful for exporting JSON data into a more tabular format that can be used in spreadsheets and databases. Unlike 'json', which focuses on JSON manipulation, json2csv specializes in data format conversion.
JSON Command
JSON command line processing toolkit.
no more writing code to inspect or transform JSON objects.
this npm module includes a json shell command. the json command processes standard
input and parses json objects. json currently handles a few different standard
input formats and provides a number of options tailored toward inspecting and
transforming the parsed json objects.
IMPORTANT
json-command has been renamed to json in npm. all updates will be made to the json npm package.
you need node v0.4.0 or higher and npm to run this program.
Installation
npm install json
installs json shell command.
Examples
the following examples parse json output from twitter http requests and output the
requested json fields.
please note that the last two examples require you to enter your username and password.
curl http://search.twitter.com/search.json?q=node.js
curl -s http://search.twitter.com/search.json?q=node.js | json
curl -s http://search.twitter.com/search.json?q=node.js | json -o results
curl -s http://search.twitter.com/search.json?q=node.js | json -o results from_user metadata
curl -s http://search.twitter.com/search.json?q=node.js | json -o results new_id=id
curl -s http://search.twitter.com/search.json?q=node.js | json -o results -C from_user from_user_id
curl -s http://stream.twitter.com/1/statuses/sample.json -uAnyTwitterUser:Password | json user.name user.id
curl -s http://stream.twitter.com/1/statuses/sample.json -uAnyTwitterUser:Password | json user.name user.id -c "entities.user_mentions.length > 0"
Synopsis
json [options] [fields]
Options
-h print help info and exit
-v (-V | --version) print version number and exit
-u print ugly json output, each object on a single line
-d print debugging output including exception messages
-o object.path specify the path to an array to be iterated on
new.key=old_key move old_key to new.key in output object
-a input object is an array, process each element separately
-c "js conditional" js conditional to be run in the context of each object that determines whether an object is printed
-C print the output fields as tab delimited columns in the order specified by fields
-e "js expression" execute arbitrary js in the context of each object.
-i use node's util.inspect instead of JSON.stringify.
-H print headers, if they are supplied. Useful for output from curl -i.
Fields
any number of fields can be specified to be printed from each json object.
by default the structure of the original json object is maintained, however options
like -e and foo=bar allow for transforming object structure.
to remove a particular key, assign it to undefined using the -e flag.
Standard Input Formats
- line delimited json objects
- back to back json objects.
e.g. { obj1 : body }{ obj2 : body }
- file separated json objects.
e.g. cat files/* | json
- when using -a, a single JSON array
Order of operations
-
objects are parsed from stdin
-
any non-existing requested keys are instantiated
-
key transforms are applied to the object
-
expressions are run against the object
-
conditionals are checked against the object. the object is discarded if conditionals do not pass
-
the requested keys are pulled from the object and output
Limitations
- all input is handled through standard in
- the current version is not particularly slow, but is NOT optimized for speed in any way
Documentation
the npm package includes a man page that can be accessed using:
man json
Known Issues
this is alpha quality code, so use at your own risk.
Thanks
this project respectfully uses code from and thanks the authors of: