jsonuri
Version:
Use URI path to get or set data
196 lines (133 loc) • 4 kB
Markdown
//travis-ci.com/aligay/jsonuri.svg?branch=master)](https://travis-ci.com/github/aligay/jsonuri/branches)
[](https://codecov.io/gh/aligay/jsonuri/branch/master)
[](https://www.npmjs.com/package/jsonuri)
[](https://david-dm.org/aligay/jsonuri)
[](https://david-dm.org/aligay/jsonuri?type=dev)
```shell
$ npm install jsonuri --save
```
```javascript
import * as jsonuri from 'jsonuri'
// or
import { get, set, ... } from 'jsonuri' // recommended practice, friendly to tree-shaking
```
```json
{
"menu": {
"id": 123,
"list": [0, 1, 2, 3, 4],
"popup": {
"menuitem": [{
"value": "New",
"onclick": "CreateNewDoc()"
},
{
"value": "Open",
"onclick": "OpenDoc()"
},
{
"value": "Close",
"onclick": "CloseDoc()"
}
]
}
}
}
```
Get the value of the specified data for the path.
**Example:**
```javascript
jsonuri.get(data, 'menu/id')
// return 123
jsonuri.get(data, 'menu/popup/menuitem/0/value')
// return 'New'
jsonuri.get(data, 'menu/popup/menuitem/0/value/..')
// {value: "New", onclick: "CreateNewDoc()"}
```
[ ](test/spec/get_spec.js)
Set the value of the specified data for the path.
**Example:**
```javascript
jsonuri.set(data, 'menu/id/', 789)
jsonuri.get(data, 'menu/id')
//789
```
[ ](test/spec/set_spec.js)
Remove the value of the specified data for the path.
**Example:**
```javascript
jsonuri.rm(data, 'menu/id')
jsonuri.get(data, 'menu/id') // undefined
```
[ ](test/spec/rm_spec.js)
Data A moved to target B before or after.
**Example:**
```javascript
jsonuri.mv(data, 'menu/list/0', 'menu/list/3')
jsonuri.get(data, 'menu/list') // [1, 2, 3, 0, 4]
[ ](test/spec/mv_spec.js)
jsonuri.set(data, 'menu/list/',[0,1,2,3,4])
jsonuri.mv(data, 'menu/list/0', 'menu/list/3', 'before')
jsonuri.get(data, 'menu/list') // [1, 2, 0, 3, 4]
```
[ ](test/spec/mv_spec.js)
Data swap in an array.
**Example:**
```javascript
jsonuri.swap(data, 'menu/list/0', 'menu/list/4')
jsonuri.get(data, 'menu/list') // [4, 1, 2, 3, 0]
jsonuri.swap(data, 'menu/list/0', 'menu/list/4')
jsonuri.get(data, 'menu/list') // [4, 1, 2, 3, 0]
```
[ ](test/spec/swap_spec.js)
Insert data into an `array` that is described in the path.
**Example:**
```javascript
jsonuri.insert(data, 'menu/list/0', 9999, 'before') // [9999, 0, 1, 2, 3, 4]
```
[ ](test/spec/insert_spec.js)
[ ](test/spec/up_spec.js)
[ ](test/spec/down_spec.js)
Traverse each data of each node and value.
**Example:**
```javascript
jsonuri.walk({a:{a1:'x'}}, (value, key, parent, { path }) => {
console.log(value, key, parent, path)
})
// { a1: 'x' } 'a' { a: { a1: 'x' } } 'a'
// x a1 { a1: 'x' } 'a/a1'
```
[ ](test/spec/walk_spec.js)
**Example:**
```javascript
jsonuri.normalizePath('a', 'b') // a/b
jsonuri.normalizePath(['a', 'b', '../'], 'c') // a/c
```
[ ](test/spec/normalizePath_spec.js)
**Example:**
```javascript
jsonuri.isCircular({}) // return false
jsonuri.isCircular(window) // return true
var a = {}
jsonuri.set(a, '/b/c/d/e/f/g', a)
jsonuri.isCircular(a) // return true
```
[ ](test/spec/isCircular_spec.js)
---
`Use URI style methods to operate data.`
All operations friendly support Vue-like frameworks.
[![Build Status](https: