A thin wrapper around raml-parser, adding extra properties to the resulting object for use in raml2html and raml2md.
npm i raml2obj --save
var raml2obj = require('raml2obj');
// source can either be a filename, url, file contents (string) or parsed RAML object.
// Returns a promise.
raml2obj.parse(source).then(function(ramlObj) {
// Do something with the resulting ramlObj :)
});
raml2obj is an open source project and your contribution is very much appreciated.
- Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
- Fork the repository on Github and make your changes on the develop branch (or branch off of it).
Please retain the code style that is used in the project andnpm run lint
before committing. - Add an example of the new feature to example.raml (if applicable)
- Send a pull request (with the develop branch as the target).
A big thank you goes out to everyone who helped with the project, the contributors and everyone who took the time to report issues and give feedback.
raml2obj is available under the MIT license. See the LICENSE file for more info.