climb
v0.0.2
Published
climb is a tool to filter JSON by attributes and array indexes
Downloads
3
Readme
node-climb
The JSON filter
What is climb?
climb is a tool that makes it easier for developers to debug and analyze JSON files and http responses.
Installation
npm install -g climb
Samples
To get the 4th item of an array in array.json
file use:
climb 3 array.json
To filter the 'BTC' attribute of a response passed by a curl
request:
curl -sS http://coinabul.com/api.php | climb BTC
Piping two climb
commands:
curl -sS http://coinabul.com/api.php | climb BTC | climb Ounces
You can also do this
climb repository.type package.json
# or...
climb keywords.1 package.json
Want to contribute?
[TODO]