Fury.js
API Description SDK
Wardaddy: Best job I ever had.
Fury provides uniform interface to API description formats such as
API Blueprint.
Usage
Install
Fury.js is available as npm module.
Install globally:
$ npm install -g fury
or as a dependency:
$ npm install --save fury
Refract Interface
Fury.js offers an interface based on the Refract Project element specification and makes use of the API, resource, and MSON namespaces. Adapters convert from formats such as API Blueprint into Refract elements and Fury.js exposes these with API-related convenience functionality. For example:
import fury from 'fury';
const source = '# My API\n...';
fury.parse({source}, function(err, api, warnings) {
console.log(api.title);
});
Once you have a parsed API it is easy to traverse:
api.resourceGroups.forEach(function (resourceGroup) {
console.log(resourceGroup.title);
resourceGroup.resources.forEach(function (resource) {
console.log(resource.title);
resource.transitions.forEach(function (transition) {
console.log(transition.title);
transition.transactions.forEach(function (transaction) {
const request = transaction.request;
const response = transaction.response;
console.log(`${request.method} ${request.href}`);
console.log(`${response.statusCode} (${response.header('Content-Type')})`);
console.log(response.messageBody);
});
});
});
});
It is also possible to do complex document-wide searching and filtering. For example, to print out a listing of HTTP methods and paths for all defined example requests:
function filterFunc(item){
if (item.element === 'httpRequest' && item.statusCode === 200) {
return true;
}
return false;
}
console.log('All API request URIs:');
api.find(filterFunc).forEach(function (request) {
console.log(`${request.method} ${request.href}`)
});
Multiple Fury Instances
There may come a day when you need to have multiple Fury instances with different adapters or other options set up in the same program. This is possible via the Fury
class:
import {Fury} from 'fury';
const fury1 = new Fury();
const fury2 = new Fury();
fury1.parse(...);
Writing an Adapter
Adapters convert from an input format such as API Blueprint into refract elements. This allows a single, consistent interface to be used to interact with multiple input API description formats. Writing your own adapter allows you to add support for new input formats.
Adapters are made up of a name, a list of media types, and three public functions: detect
, parse
, and an optional serialize
. A simple example might look like this:
export const name = 'my-adapter';
export const mediaTypes = ['text/vnd.my-adapter'];
export function detect(source) {
return source.match(/some-test/i) !== null;
}
export function parse({source, generateSourceMap}, done) {
done(null, elements);
}
export function serialize(api, done) {
done(null, outputString);
}
Now you can register your adapter with Fury.js:
import fury from 'fury';
import * as myAdapter from './my-adapter';
fury.adapters.unshift(myAdapter);
fury.parse({source: 'some-test\n...'}, function (err, api) {
console.log(api.title);
});
Legacy Interface
This is the older "legacy" interface for API Blueprint and Apiary Blueprint parsing.
API Blueprint Parsing
var parser = require('fury').legacyBlueprintParser;
var source = '# My API\n';
parser.parse({ code: source }, function(error, api, warnings) {
console.log(api.name);
});
Markdown Rendering
The legacy interface also offers access to Markdown rendered as used internally
by API and Apiary Blueprint parsers.
var markdownRenderer = require('fury').legacyMarkdownRenderer;
var source = '# My API\n';
markdownRenderer.toHtml(source, {}, function(error, html) {
console.log(html);
});
Development
Building & Testing
Parts of Fury.js are written in Coffeescript, so you must build the final library before it can be used. All of the build/test/etc commands are run through npm:
npm run compile
npm test
npm run coverage
open coverage/lcov-report/index.html