This package has been deprecated

Author message:

`oas-reducer` has moved into `rdme`! https://github.com/readmeio/rdme

oas-reducer
TypeScript icon, indicating that this package has built-in type declarations

4.0.1 • Public • Published

oas-reducer

Reduce an OpenAPI definition into a smaller subset.

Build

Installation

npm install -g oas-reducer

Usage

Library

import oasReducer from 'oas-reducer';

console.log(
  oasReducer(<OpenAPI definition>, options)
);

⚠️ Note that the API definition supplied here must be: an OpenAPI 3.x definition and a JSON object.

Available options

  • tags: An array of tags to reduce by. Example: ['pet']
  • paths: A key-value object of path + method combinations to reduce by. Example: {'/pet': ['get', 'post']}
    • If you wish to retain all methods of a given path, supply * as the method array instead. Example: {'/pet': '*'}

CLI

$ oas-reducer <OpenAPI definition to reduce>

The CLI will walk you through a couple of questions about how and what you want to reduce the file by and then it'll prompt you to save the newly reduced API definition to a new file! 🏅

⚠️ Note that the API definition supplied here must be an OpenAPI 3.x definition and can be either a JSON or YAML file path.

Readme

Keywords

Package Sidebar

Install

npm i oas-reducer

Weekly Downloads

38

Version

4.0.1

License

MIT

Unpacked Size

44.4 kB

Total Files

13

Last publish

Collaborators

  • jonursenbach