jsonpointer
Simple JSON Addressing.
Last updated 9 years ago by marcbachmann .
MIT · Repository · Bugs · Original npm
$ cnpm install jsonpointer 
SYNC missed versions from official npm registry.

JSON Pointer for nodejs

This is an implementation of JSON Pointer.

Usage

var jsonpointer = require('jsonpointer');
var obj = { foo: 1, bar: { baz: 2}, qux: [3, 4, 5]};

jsonpointer.get(obj, '/foo');     // returns 1
jsonpointer.get(obj, '/bar/baz'); // returns 2
jsonpointer.get(obj, '/qux/0');   // returns 3
jsonpointer.get(obj, '/qux/1');   // returns 4
jsonpointer.get(obj, '/qux/2');   // returns 5
jsonpointer.get(obj, '/quo');     // returns undefined

jsonpointer.set(obj, '/foo', 6);  // sets obj.foo = 6;
jsonpointer.set(obj, '/qux/-', 6) // sets obj.qux = [3, 4, 5, 6]

var pointer = jsonpointer.compile('/foo')
pointer.get(obj)    // returns 1
pointer.set(obj, 1) // sets obj.foo = 1

Testing

$ node test.js
All tests pass.
$

Build Status

Author

(c) 2011-2015 Jan Lehnardt jan@apache.org & Marc Bachmann https://github.com/marcbachmann

License

MIT License.

Current Tags

  • 5.0.0                                ...           latest (4 years ago)

3 Versions

  • 5.0.0                                ...           4 years ago
  • 4.1.0                                ...           5 years ago
  • 4.0.1                                ...           9 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (1)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org