New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

obpath.js

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

obpath.js

Resolves path expressions against objects


Version published
Maintainers
1
Created

ObPath

ObPath matches path expressions against objects, much like jsonpath does.

To install run "npm install -g obpath".

This should allow you to run obpath like this to get books that cost more than 10 simoleons:

wget "https://raw.githubusercontent.com/bloglovin/obpath.js/master/testdata/data.json"
cat data.json | obp ".store.books[*](gt(@.Price, 10))"

Some sample queries:

".store",
".store.books",
".store.*",
"..Author",
".store.counts[*]",
".store.counts[3]",
".store.counts[1:2]",
".store.counts[-2:]",
".store.counts[:1]",
".store.counts[:1].Price",
"..books[*](has(@.ISBN))",
".store.books[*](!empty(@.ISBN))",
".store.books[*](eq(@.Price, 8.99))",
".store.books[0:4](eq(@.Author, \"Louis L'Amour\"))",
"..books.*(between(@.Price, 8, 10)).Title",
"..books[*](gt(@.Price, 9))",
"..books[*](has(@.Metadata))",
"..books[*](contains(@.Title, 'R')).Title",
"..books[*](cicontains(@.Title, 'R')).Title",
".store.*[*](gt(@.Price, 18))"

Programmatic usage

var obpath = require('obpath');

main();

function main() {
  var context = obpath.createContext();

  // Get all trees up until the second last one
  var trees = obpath.mustCompile(".trees[:-2]", context);

  var data = {
    "trees":   ["Elm", "Oak", "Fir"],
    "animals": ["Cat", "Dog", "Horse"]
  };

  var result = trees.evaluate(data);
  result.forEach(function printMatch(match) {
    console.log("Match: ", JSON.stringify(match));
  });
}

FAQs

Package last updated on 22 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts