Giter VIP home page Giter VIP logo

jsonpointer-cli's Introduction

JSON Pointer CLI

npm

CLI for retrieving a specific value within a JSON document using JSON Pointers.

Looking for a Node library? Check out jsonpointer.

Installation

$ npm install -g jsonpointer-cli

Usage

$ jp
usage: jsonpointer [options] <pointer> [<indent>]
                jp [options] <pointer> [<indent>]

options:
  -l --log     Output console.log format instead of JSON

examples:
  $ echo {"name": "jsonpointer-cli", "version": "1.0.0"} | jp /name
  "jsonpointer-cli"

  $ echo {"name": "jsonpointer-cli", "version": "1.0.0"} | jp --log /version
  1.0.0

  $ echo {"data": ["a", {"b": 2}, "c"]} | jp /data/1
  {
    "b": 2
  }

  $ echo {"data": ["a", {"b": 2}, "c"]} | jp --log ""
  { data: [ 'a', { b: 2 }, 'c' ] }

  $ echo {"data": ["a", {"b": 2}, "c"]} | jp /data
  ["a",{"b":2},"c"]

  $ echo {} | jp ""
  {}

Try it out!

Get the URL of the top JavaScript project on GitHub:

$ curl -s "https://api.github.com/search/repositories?q=language:javascript&sort=stars" | jp -l /items/0/html_url

Contributing

  1. Check the open issues or open a new issue to start a discussion around your feature idea or the bug you found
  2. Fork the repository and make your changes
  3. Send a pull request

If your PR has been waiting a while, feel free to ping me on Twitter.

jsonpointer-cli's People

Contributors

joeyespo avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

oblmfgje

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.