How to create static documents in Redoc-CLI from files exported from API Gateway in the form of Swagger +API Gateway extensions

How to create static documents in Redoc-CLI from files exported from API Gateway in the form of Swagger +API Gateway extensions

We have shown how to create static documents using Swagger-UI.

There are many other static document generation tools available, and we introduce Redoc.

Install redoc-cli since it is generated from the command line.

npm install -g redoc-cli

Check the version.

redoc-cli --version
項目 バージョン
redoc-cli 0.9.4

Export the OpenAPI yaml from API Gateway.

Name the file “lambda-dev-oas30-apigateway.yaml”.

API GatewayからSwagger +API Gateway 拡張の形式でエクスポートしたファイルからRedoc-CLIで静的ドキュメントを作成する方法

There are two ways to use redoc-cli: to start it on a local server and view static HTML, or to generate static HTML.

Start on local server with redoc-cli command

Place yaml in the current directory and execute the following

redoc-cli serve aliastestlambda-api-dev-oas30-apigateway.yaml

Start “http://127.0.0.1:8080”.

API GatewayからSwagger +API Gateway 拡張の形式でエクスポートしたファイルからRedoc-CLIで静的ドキュメントを作成する方法

It is beautifully rendered.

Generating static HTML with the redoc-cli command

Now generate the HTML that was rendered earlier.

redoc-cli bundle lambda-dev-oas30-apigateway.yaml

By default, “doc-static.html” is created, but the file name can be optionally changed. See Help for details.

redoc-cli bundle --help

API GatewayからSwagger +API Gateway 拡張の形式でエクスポートしたファイルからRedoc-CLIで静的ドキュメントを作成する方法

You can see that static HTML is generated.

no summary?

The generated HTML shows no summary. This is because there is no summary in the yaml.

Add summary to the GET part of the yaml.

paths:
  /user:
    get:
      summary: GET TEST # Add summary
      responses:
        200:

This will generate HTML again.

API GatewayからSwagger +API Gateway 拡張の形式でエクスポートしたファイルからRedoc-CLIで静的ドキュメントを作成する方法

A summary is now displayed. Please refer to “What Is OpenAPI?” for other detailed descriptions.

In addition, the download button can be hidden by setting the option --options.hideDownloadButton=true when generating HTML.

redoc-cli bundle lambda-dev-oas30-apigateway.yaml --options.hideDownloadButton=true

redoc-cli bundle lambda-dev-oas30-apigateway.yaml --options.hideDownloadButton=true

–options.pathInMiddlePanel=true to make the path visible.

redoc-cli bundle lambda-dev-oas30-apigateway.yaml --options.hideDownloadButton=true --options.pathInMiddlePanel=true

API GatewayからSwagger +API Gateway 拡張の形式でエクスポートしたファイルからRedoc-CLIで静的ドキュメントを作成する方法

コメント

Discover more from 株式会社CONFRAGE ITソリューション事業部

Subscribe now to keep reading and get access to the full archive.

Continue reading

Copied title and URL