jsonpath icon indicating copy to clipboard operation
jsonpath copied to clipboard

Query and manipulate JavaScript objects with JSONPath expressions. Robust JSONPath engine for Node.js.

Results 102 jsonpath issues
Sort by recently updated
recently updated
newest added

I've faced this message inside a AWS Lambda Function after the usage of codebuild: `ImportModuleError: Error: Cannot find module '../include/module.js` So I suggest this change to resolve the imports in...

So basically I have a javascript data object that might or might not contain an array entry for the jsonpath. I would like to use `jp.value(data, path, value)` and have...

I have been trying to integrate jsonpath into my webpack project, but I'm getting blocked the following error: >Uncaught ReferenceError: Invalid left-hand side in assignment It appears the error is...

[13:59:51] Browserify error: Can't walk dependency graph: Cannot find module '..' from '.../node_modules/jsonpath' required by .../node_modules/jsonpath/jsonpath.js [13:59:51] Browserify error: Can't walk dependency graph: Cannot find module './dict' from '.../node_modules/jsonpath' required...

The pre-bundled jsonpath.js file included in the node package will crash when attempting to use an array selector operation due to missing underscore functions. Webpack has given "underscore" module index...

Hey guys, awesome library. Love it! But I can't use it in lambda packaged with `esbuild` without some hacking because of this: https://github.com/dchester/jsonpath/blob/master/lib/grammar.js#L102 It comes down to this in runtime:...

I’m not sure if this is intentional, but while a path of `'$'` — i.e. the root object — works fine with `jp.query()`, `jp.paths()`, `jp.nodes()`, `jp.parse()`, and `jp.value()` when not...

This is a simple yet safe traversal of the AST after it is parsed and before it is evaluated, replacing JsonPath spec-defined names `@` and `$` with valid names (`__jsonpath_current`...

Although it's clear potential this repository seems to not be properly maintain in last 3 years. Among these 125 forks, does any of them is maintained? To the author: Please...

When using `stringify`, the path expression output is not directly compatible for use in the `query` function to get data from objects. ``` stringify output: $.response.items["*"]["iso-1234"] query input: $.response.items[*]['iso-1234'] stringify...