npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

serverless-api-blueprint

v0.1.0

Published

Serverless API Blueprint - Generate API Docs as API Blurprint format ( https://apiblueprint.org ) from Serverless project ( http://www.serverless.com/ ).

Downloads

23

Readme

Serverless API Blueprint

This is API Documentation generator plugin for Serverless project. API Documentations are generated as API Blueprint format.

This can embed event.json as request body and actual response to docs to help your API development.

Getting Started

You can install with following steps. (Requirement: Serverless v0.5 or higher)

Install the plugin

npm install --save git+https://github.com/hiroara/serverless-api-blueprint.git

Configure your project

All configurations are defined under apib namespace.

Project level (s-project.json)

  • targets
    • Definitions of target directoreis to generate docs.
    • Default: empty
  • targets.<target name>.format
    • Format type defined in API Blueprint
    • Supported values are 1A only.
    • Default: 1A
  • targets.<target name>.name
    • Readable name of the API
    • Default: Target name
  • targets.<target name>.description
    • Description of the API
    • Default: Blank
  • targets.<target name>.resourceGroups
    • Definitions of resource groups
    • Each keys represent name of each resource groups
    • Default: Empty
  • targets.<target name>.resourceGroups.<name>.description
    • Description of the resource group
    • Default: Blank
  • targets.<target name>.resourceGroups.<name>.resources
    • Description of the resource group
    • Each keys represent path of each resources
    • Default: Blank
  • targets.<target name>.resourceGroups.<name>.resources.<resource path>.name
    • Name of the resource
    • Default:
  • targets.<target name>.dataStructures
    • Definitions of data structures
    • Each keys represent name of each data structure
    • Default: Empty
  • targets.<target name>.dataStructures.<structure name>.type - Data type of data structures
    • Default: object
  • targets.<target name>.dataStructures.<structure name>.attributes
    • Attributes definitions
    • Can contain additional information
  • targets.<target name>.dataStructures.<structure name>.attributes.<parameter name>.type
    • Parameter type as expected by the API
    • Default: string
  • targets.<target name>.dataStructures.<structure name>.attributes.<parameter name>.required
    • Specifier of a required parameter
    • Default: string
  • targets.<target name>.dataStructures.<structure name>.attributes.<parameter name>.example
    • Example value of the parameter
    • Default: None
  • targets.<target name>.dataStructures.<structure name>.attributes.<parameter name>.default
    • Default value of the parameter
    • Default: None
  • targets.<target name>.dataStructures.<structure name>.attributes.<parameter name>.description
    • Description of the parameter
    • Default: Blank
  • targets.<target name>.dataStructures.<structure name>.attributes.<parameter name>.additionalDescription
    • Additional description of the parameter
    • Default: None
{
  ...
  "custom": {
    "apib": {
      "targets": {
        "restApi": {
          "format": "1A",
          "name": "Awesome REST API",
          "description": "This is Awesome REST API!",
          "resourceGroups": {
            ...
            "Users": {
              "description": "Users registered in this service.",
              "resources": {
                "users/me": {
                  "name": "Resource Owner User"
                }
              }
            },
            ...
          },
          "dataStructures": {
            ...
            "Attachment": {
              "type": "object",
              "attributes": {
                ...
                "name": {
                  "type": "string",
                  "description": "File name",
                  "example": "default.jpg"
                }
                ...
              }
            }
            ...
          }
        }
      }
    }
  },
  ...
}

Function level (<targetDir>/[<subFolders>]/<functionDir>/s-function.json)

Functions on Serverless framework are used as actions.

This plugin often uses each functions on Serverless framework as multiple actions on API Blueprint, because each functions can have multiple endpoints.

  • name
    • Readable name of actions
    • Default: Function name (defined in s-function.json at path name)
  • description
    • Description of actions
    • Default: Blank
  • request
    • Indicator of whether or not to generate request example
    • Can contain additional information
    • Default: false (Do not generate)
  • request.contentType
    • Content type of the request
    • Default: application/json
  • request.eventStructure
    • Definition of structure of event.json
    • I recommend to define with s-templates.json
  • request.eventStructure.body
    • Path of request body in event.json
    • Default: Root of json
  • response
    • Indicator of whether or not to generate response example
    • Can contain additional information
    • Default: false (Do not generate)
  • response.contentType
    • Content type of the request
    • Default: application/json
  • parameters or attributes
    • Parameter or Attributes definitions
    • Can contain additional information
    • Defined in same way as dataStructures.<name>.attributes
    • Default: Empty
{
  ...
  "custom": {
    "apib": {
      "name": "Update an Cool Resource",
      "description": "Update specific cool resource. You should call this API!",
      "request": {
        "contentType": "application/json",
        "eventStructure": {
          "body": "body"
        }
      },
      "response": true,
      "pathParameters": {
        "cool_resource_id": {
          "example": "dummy-resource-id",
          "description": "Identifier of Target Resource",
          "required": true
        }
      },
      "attributes": {
        ...
        "username": {
          "type": "string",
          "example": "test_user",
          "description": "Name or email of the user",
          "additionalDescription": "This parameter will be recognized whether name or email automatically.",
          "required": true
        },
        ...
      }
    }
  },
  ...
}

Usage

You can generate docs following command.

sls apib generate

Or execute with --targets or -t option (comma separated).

sls apib generate --target restApiV1,restApiV2

Enjoy!