Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fury

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fury

API Description SDK

  • 0.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.1K
decreased by-23.71%
Maintainers
1
Weekly downloads
 
Created
Source

Fury.js

Circle CI Coverage Status Dependency Status devDependency Status

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

Interface

API Blueprint Parsing

In the interim period Fury.js offers only "legacy" interface for API Blueprint and Apiary 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);
});

FAQs

Package last updated on 03 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc