Socket
Socket
Sign inDemoInstall

protagonist

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

protagonist

API Blueprint Parser


Version published
Weekly downloads
8.1K
decreased by-6.52%
Maintainers
1
Weekly downloads
 
Created
Source

Protagonist Build Status

API Blueprint Parser for Node.js

Protagonist is a Node.js wrapper for the Snow Crash library.

API Blueprint is Web API documentation language. You can find API Blueprint documentation on the API Blueprint site.

Install

The best way to install Protagonist is by using its NPM package.

$ npm install protagonist

Getting started

var protagonist = require('protagonist');
protagonist.parse('# My API', function(error, result) {
	if (error) {
   		console.log(error);
	    return;
  	}
  
	console.log(result.ast);
}

Hacking

You are welcome to contribute. Use following steps to build & test Protagonist.

Build

Protagonist uses node-gyp build tool.

  1. If needed, install node-gyp:

     $ npm install -g node-gyp
    
  2. Clone the repo + fetch the submodules:

     $ git clone git://github.com/apiaryio/protagonist.git
     $ cd protagonist
     $ git submodule update --init --recursive
    
  3. Build:

     $ node-gyp configure
     $ node-gyp build
    

Test

Inside protagonist repository run:

$ npm install
$ npm test

License

MIT License. See LICENSE file.

FAQs

Package last updated on 10 Jun 2013

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