Skip to content

Repository files navigation

jref

Description

jref traverse and dereference JSON objects quickly.

  • Currently only support internal references.
  • No dependencies.

Installation

npm install jref

Example

varjref=require('jref');varobject={a: {b: {c: {$ref: '#/alphabet/c'}}},alphabet: {c: {soundsLike: 'see',one: 'stroke',is: 'curved'}}};jref.traverse(object,'#/alphabet/c');// {// soundsLike: 'see',// one: 'stroke',// is: 'curved'// }jref.dereference(object);// {// a: {// b: {// c: {// soundsLike: 'see',// one: 'stroke',// is: 'curved'// }// },// alphabet: {// c: {// soundsLike: 'see',// one: 'stroke',// is: 'curved'// }// }// }

About

Resolve JSON pointers and dereference JSON schemas

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages