0.1.0 • Published 9 years ago

api-blueprint-to-postman v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

api-blueprint-to-postman

Work In Progress! Funtionality is incomplete and/or possibly incorrect!
Please be patient as I figure out the structure of both blueprint and postman files and implement more functionality.

Build Status Coverage Status Dependency Status devDependency Status peerDependency Status

Develop Status Develop Coverage Status

Convert an API Blueprint into a Postman collection.

Installation

api-blueprint-to-postman on NPM

Usage

// get a JSON structure in compliance with API Blueprint Serialization Scheme
var blueprint = require('blueprint.json');
// get this module
var api_blueprint_to_postman = require('api-blueprint-to-postman');
// call this module as a function with the JSON as input
var collection = api_blueprint_to_postman(blueprint);
// output is another JSON object compliant with postman collection scheme
fs.writeFileSync('collection.json.postman_collection', JSON.stringify(collection));

License

MIT

0.1.0

9 years ago