1.2.0 • Published 5 years ago

@rebilly/swagger-combine v1.2.0

Weekly downloads
93
License
MIT
Repository
-
Last release
5 years ago

@rebilly/swagger-combine

Opinionated tool to shallow-merge two or more swagger 2.0 specs into one.

Install

Using npm:

 npm install @rebilly/swagger-combine

or yarn:

yarn add @rebilly/swagger-combine

Usage

const { combineSpecs } = require('@rebilly/swagger-combine');

const merged = combineSpecs([
  'https://rebilly.github.io/RebillyAPI/swagger.json',
  'https://rebilly.github.io/RebillyUserAPI/swagger.json',
  'https://rebilly.github.io/RebillyReportsAPI/swagger.json',
]);

Usage as a CLI tool

Install globally:

npm install -g @rebilly/swagger-combine

or

yarn global add @rebilly/swagger-combine

or use npx

swagger-combine <baseSpec> [specs...]

Positionals:
  baseSpec  Base spec URL                                               [string]
  specs     List of spec URLs to merge                                  [string]

Options:
  --help        Show help                                              [boolean]
  --version     Show version number                                    [boolean]
  --output, -o  Output filename, by default stdout will be used         [string]

Examples:
  [combine 3 specs]
    
    swagger-combine -o merged.json https://rebilly.github.io/RebillyAPI/swagger.json https://rebilly.github.io/RebillyUserAPI/swagger.json https://rebilly.github.io/RebillyReportsAPI/swagger.json
1.2.0

5 years ago

1.1.0

5 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago