2.5.6 • Published 2 years ago

oas-resolver-browser v2.5.6

Weekly downloads
9,568
License
BSD-3-Clause
Repository
github
Last release
2 years ago

oas-resolver

Forked from https://github.com/Mermade/oas-kit

v2.5.0

Usage

const yaml = require('yaml');
const input = yaml.parse(str);
const source = url; // or filename
resolver.resolve(input,source,options)
.then(function(options){
  fs.writeFileSync(outputFile,yaml.stringify(options.openapi),'utf8');
})
.catch(function(ex){
  // ...
});

See here for complete documentation of the options object.