rollup-plugin-openapi
v3.0.1
Published
A Rollup and Vite plugin which converts OpenAPI YAML files to ES6 modules.
Downloads
354
Maintainers
Readme
rollup-plugin-openapi
A Rollup and Vite plugin which converts OpenAPI YAML files to ES6 modules.
💡 The plugin works with $ref
references in your YAML files!
Install
Using npm:
npm install rollup-plugin-openapi --save-dev
Usage
Rollup
Create a rollup.config.js
configuration file and
import the plugin:
import openapi from "rollup-plugin-openapi";
export default {
input: "src/index.js",
output: {
dir: "output",
format: "cjs",
},
plugins: [openapi()],
};
Then call rollup
either via the
CLI or the
API.
Vite
Create a vite.config.js
configuration file and import the
plugin:
import openapi from "rollup-plugin-openapi";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [openapi()],
});
Then call vite
either via the
CLI or the
API.
Use
With an accompanying file src/index.js
, the local src/api.yaml
file would
now be importable as seen below:
src/api.yaml
openapi: '3.0.0'
info:
title: My great API
description: Great description
version: '1.0.0'
paths:
/my/path:
get:
summary: Some GET request
responses:
'200':
description: Some response
content:
application/json:
schema:
type: object
properties:
someKey:
type: string
example:
someKey: some value
src/index.js
import api from "./api.yaml";
console.log(api);
If you have SwaggerUI in the React flavor installed you can now render it. With Vite you get Hot Module Reload for free.
src/index.jsx
import React from "react";
import ReactDOM from "react-dom";
import SwaggerUI from "swagger-ui-react";
import "swagger-ui-react/swagger-ui.css";
import api from "./api.yaml";
ReactDOM.render(<SwaggerUI spec={api} />, document.getElementById("root"));
Use with TypeScript
If you use TypeScript you need to create a file like yaml.d.ts
with the
following contents:
src/yaml.d.ts
/// <reference types="rollup-plugin-openapi/types/yaml" />
src/index.ts
import api from "./api.yaml";
console.log(api);
Otherwise TypeScript will fail with the error
Cannot find module './api.yaml' or its corresponding type declarations.
Options
exclude
Type: String
| Array[...String]
Default: null
A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should ignore. By default no files are ignored.
include
Type: String
| Array[...String]
Default: null
A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted.