📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@nightapes/serverless-openapi

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nightapes/serverless-openapi

A simple openapi generator for [serverless](serverless.com).

1.3.0
Source
npm
Version published
Maintainers
1
Created
Source

serverless-openapi

A simple openapi generator for serverless.

Support for serverless 2 and 3

The files is generated locally without any upload to aws apigateway.

Install

npm i -D @nightapes/serverless-openapi

Usage

Add plugin into your serverless.yml file

plugins:
  - '@nightapes/serverless-openapi'

To generate api run

serverless openapi

If you want to change the format (json or yaml) or the file name use

serverless openapi -o openapi.yaml

or set it via serverless yaml

custom:
  openapi:
    out: openapi.yaml

Add basic info and tags

Under custom add

custom:
  openapi:
    title: 'my fancy openapi'
    version: '1.0.0'
    description: 'My description of the serverless api'
    tags:
      - name: Settings
        description: Description

Example for request and response schema

Works only for aws http events, the request is the default serverless request schema.

functions:
  create:
    handler: posts.create
      events:
        - http:
            path: v1/user-settings
            method: put
            tags:
              - Settings
            authorizer:
              name: authorizer
              scopes:
                - admin
            operationId: setUserSettings
            cors: true
            request:
              schemas:
                application/json:
                  schema: ${file(./your-schema.json)}
                  name: UserSettings
            responseSchemas:
              200:
                application/json:
                  schema: ${file(./your-schema.json)}
                  name: UserSettings
                  description: 'UserSettings'
              204:
                application/json:
                  description: 'OK'

Default respsonse

You can set a default response via

custom:
  openapi:
    defaultResponse:
      application/json:
        schema: ${file(./apiError.type.json)}
        description: 'Default api error'
        name: ApiError

Enable the default response per function via

functions:
  create:
    handler: posts.create
      events:
        - http:
            path: v1/user-settings
            defaultResponse: true

Parameters

Following format to add paramters is supported. See SLS Doc

All parameters will be interpreted as string

functions:
  create:
    handler: posts.create
    events:
      - http:
          path: posts/create
          method: post
          request:
            parameters:
              querystrings:
                url: true
              headers:
                foo: false
              paths:
                bar: false

TODO

  • Servers
  • Authorizer

FAQs

Package last updated on 08 Feb 2022

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