Giter Club home page Giter Club logo

apidoc-postman's Introduction

apidoc-postman

Use apiDoc to create a Postman collection.

license Build Status npm

This library uses the apidoc-core library.

How It Works

By putting apiDoc inline comments in the source code, you will get a postman.json file which can be imported into the Postman App to create a new collection.

E.g.

/**
 * @api {get} /user/id Request User information
 * @apiName GetUser
 * @apiGroup User
 * @apiPermission basic
 *
 * @apiParam {Number} id Users unique ID.
 *
 * @apiSuccess {String} firstname Firstname of the User.
 * @apiSuccess {String} lastname  Lastname of the User.
 */

Installation

npm install @panz3r/apidoc-postman

Features

apidoc-postman takes full advantage of Postman environment variables for the following aspects

API URL

Using the base_url environment variable you can specify the base URL of your APIs.

Authentication

apidoc-postman uses a simple logic to map your endpoints permissions to Postman ones.

You can set your endpoint @apiPermission to basic to have a Basic authentication on Postman, otherwise the Bearer authentication will be used by creating a reference to an environment variable called <@apiPermission>_token.

E.g. @apiPermission user maps to user_token.

N.B: At the moment only Basic and Bearer authentications are supported

Body

At the moment, apidoc-postman will setup Postman to use application/json body format.

Example

apidoc-postman -i example/ -o doc/

Have a look at apiDoc for full functionality overview and capabilities of apiDoc.

Base Postman Environment setup

{
  "base_url": "https://localhost:8000/api/v1",
  "basic_username": "basic_auth_username",
  "basic_password": "basic_auth_password",
  "user_token": "a.user.bearer.token"
}

Made with ✨ & ❤️ by Mattia Panzeri and contributors

apidoc-postman's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.