Fork of 'json-refs'(https://github.com/whitlockjc/json-refs) with fixes for Windows
npm install json-refs-windows-fixedjson-refs is a simple library for interacting with [JSON References][json-reference-draft-spec] and
[JSON Pointers][json-pointer-spec]. While the main purpose of this library is to provide JSON References features,
since JSON References are a combination of Object structure and a JSON Pointer, this library also provides some
features for JSON Pointers as well.
* Build status: 
* Dependencies: 
* Developer dependencies: 
* Downloads: 
* Gitter: 
* License: 
* Version: 
The documentation for this project can be found at
Specific documentation can be found here:
* API documentation can be found at
* CLI can be found at
json-refs is available for both Node.js and the browser. Installation instructions for each environment are below.
json-refs binaries for the browser are available in the dist/ directory:
* json-refs.js: _2,292kb_, full source source maps
* json-refs-min.js: _148kb_, minified, compressed and no sourcemap
Of course, these links are for the master builds so feel free to download from the release of your choice. Once you've
gotten them downloaded, to use the standalone binaries, your HTML include might look like this:
`` html`
Installation for Node.js applications can be done via [NPM][npm].
``
npm install json-refs --save
If you plan on using the json-refs CLI executable, you can install json-refs globally like this:
``
npm install json-refs --global
After this, feel free to run json-refs help` to see what you can do or view the CLI documentation linked above
[npm]: https://www.npmjs.com/
[json-reference-draft-spec]: http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03
[json-pointer-spec]: http://tools.ietf.org/html/rfc6901