npm install gulp-json-refsGulp wrapper for [json-refs] - Various utilities for [JSON References][json-reference-draft-spec], and [JSON Pointers][json-pointer-spec] since JSON
References are part JSON Pointer.
* Build status: 
* Dependencies: 
* Developer dependencies: 
* Downloads: 
* Gitter: 
* License: 
* Version: 
Note that this is still in early (and heavy) development
Let's say you have a number of files with multiple references that you'd like to resolve. This will get it done.
Install package with NPM and add it to your development dependencies:
``bash`
npm install --save-dev gulp-json-refs
`javascript
var json_refs = require('gulp-json-refs');
gulp.task('resolveRefs', function() {
return gulp.src('data/*.json')
.pipe(json_refs())
.pipe(gulp.dest('dist'));
});
``
[bower]: http://bower.io/
[npm]: https://www.npmjs.com/
[json-refs]: https://github.com/whitlockjc/json-refs
[json-reference-draft-spec]: http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03
[json-pointer-spec]: http://tools.ietf.org/html/rfc6901
[path-loader]: https://github.com/whitlockjc/path-loader