f5io / jsonpath

Performant JSONPath implementation that focuses on results
MIT License
16 stars 5 forks source link

jsonpath

Build Status Coverage Status


Performant JSONPath implementation that focusses on results

Features

Syntax

COMING SOON

Installation

$ npm install --save @f5io/jsonpath

or if you have yarn installed on your machine

$ yarn add @f5io/jsonpath

Usage

const jp = require('@f5io/jsonpath');
const jsonPathQueryStr = '$..h[?(@.foo>13)]';
const result = jp(jsonPathQueryStr,jsonObject);

Contributors