0.0.2 • Published 8 years ago

climb v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

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