1
0
mirror of https://github.com/fluencelabs/jsonpath synced 2025-07-03 17:51:45 +00:00

jsonpath-wasm publish

This commit is contained in:
freestrings
2019-04-13 22:27:33 +09:00
parent 35ef9f8c5e
commit 4a044ba250
38 changed files with 6515 additions and 257 deletions

@ -2,7 +2,7 @@
[![Build Status](https://travis-ci.org/freestrings/jsonpath.svg?branch=master)](https://travis-ci.org/freestrings/jsonpath)
It is [JsonPath](https://goessner.net/articles/JsonPath/) implementation. The core implementation is written in Rust.
It is native-addon of [jsonpath_lib](https://github.com/freestrings/jsonpath) that is [JsonPath](https://goessner.net/articles/JsonPath/) engine written in Rust.
## Notice
@ -18,7 +18,6 @@ Build from source instead of using pre-built binary, and if Rust is not installe
* [jsonpath.select(json: string|object, jsonpath: string)](#json-stringobject-jsonpath-string)
* [jsonpath.compile(jsonpath: string)](#compilejsonpath-string)
* [jsonpath.selector(json: string|object)](#selectorjson-stringobject)
* [Simple time check](https://github.com/freestrings/jsonpath/wiki/Simple-timecheck-jsonpath-native)
* [Other Examples](https://github.com/freestrings/jsonpath/wiki/Javascript-examples)
### jsonpath.Selector

@ -1,6 +1,6 @@
{
"name": "jsonpath-rs",
"version": "0.1.7",
"version": "0.1.8",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,16 +1,16 @@
{
"name": "jsonpath-rs",
"version": "0.1.7",
"version": "0.1.8",
"description": "It is JsonPath implementation. The core implementation is written in Rust",
"author": "Changseok Han <freestrings@gmail.com>",
"license": "MIT",
"keywords": [
"jsonpath",
"rust-addon",
"native-addon",
"rust-binding",
"rust",
"rustlang",
"json"
"json",
"parsing"
],
"main": "lib/index.js",
"dependencies": {