Categorygithub.com/diogogmt/twirp-openapi-gen
repository
0.1.2
Repository: https://github.com/diogogmt/twirp-openapi-gen.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

twirp-openapi-gen

Generate Open API V3 documentation for Twirp services

GoDoc

Installation

Binary

For installation instructions from binaries please visit the Releases Page.

Go

$  go install github.com/diogogmt/twirp-openapi-gen/cmd/twirp-openapi-gen@latest

Proto OpenAPI Mappings

ProtoOpenAPI
RPCPath
Package + Service + RPC NamePath.Key
RPC NamePath.Summary
RPC InputPath.RequestBody
RPC OutputPath.Response
RPC CommentPath.Description
MessageComponent.Schema
Message CommentComponent.Schema.Description
Message FieldComponent.Schema.Property
Message Field CommentComponent.Schema.Property.Description
EnumComponent.Schema.Property.Enum

Notes

  • The requestBody property of the path post operation only has one content-type of application/json, and its schema always references the RPC input message.
  • Comments can be added above an RPC, message, or field resources. Inline comments are not supported.
  • Path items only have one response with a 200 code using the schema of the message returned by the RPC method.

Usage

❯ twirp-openapi-gen -h
Usage of twirp-openapi-gen:
  -format string
        Document format; json or yaml (default "json")
  -in value
        Input source .proto files. May be specified multiple times.
  -out string
        Output document file (default "./openapi-doc.json")
  -path-prefix string
        Twirp server path prefix (default "/twirp")
  -proto-path value
        Specify the directory in which to search for imports. May be specified multiple times; directories will be searched in order.  If not given, the current working directory is used.
  -servers value
        Server object URL. May be specified multiple times.
  -title string
        Document title (default "open-api-v3-docs")
  -verbose
        Log debug output
  -version string
        Document version

Examples

Contributing

Makefile

Why

This project is a rewrite of the twirp-swagger-gen tool adding support to the latest OpenAPI v3 spec

Even though there are other ways of generating documentation for proto files, eg; protoc-gen-doc, gnostic, buf modules, etc. Neither provides an out-of the box solution to have interactive Twirp API docs.

There is already a rich ecosystem of tools for visualizing and interacting with OpenAPI V3 spec documents. The twirp-openapi-gen tool leverages that and generates valid JSON/YAML OpenAPI V3 documents from the proto definitions. The API docs can be imported to any tool that has support for OpenAPI V3, eg; Postman, Swagger, Stoplight, etc..