Node module for extracting Swagger/OpenAPI endpoints from inline comments.
Too complicated? Try the oas command line tool, which automates all of this! https://github.com/readmeio/oas
npm install --save-dev swagger-inline
swagger-inline [--base] [--format] <inputGlobs ...>
swagger-inline "./*.js" --base 'swaggerBase.json' > api.jsonThe inputGlobs argument is a list of files, or globs, to search for Swagger/OAS comments.
base: Base specification to extend. *Requiredformat: Output filetype:.jsonor.yaml(default:.json)scope: Matches the scope field defined in each API. For example, if--scope publicis supplied, all operations will be generated, if--scope private, only those operations that have ascope: privatedeclaration will be included.
swaggerInline([inputGlobs...], options) => Promise => json | yaml
const swaggerInline = require('swagger-inline');
swaggerInline(['src/**/*.js', 'test/**/*.js'], {
base: 'swaggerBase.json',
}).then((generatedSwagger) => {
/* ... */
});base: Base specification to extend. *Requiredformat: Output filetype:.jsonor.yaml(default:.json)ignore: An array of globs for files to ignore. (default:['node_modules/**/*', 'bower_modules/**/*'],logger: Function called for logging. (default: empty closure)metadata: Add additional annotations to the Swagger file, prefixed withx-si.scope: Matches the scope field defined in each API. For example, if--scope publicis supplied, all operations will be generated, if--scope private, only those operations that have ascope: privatedeclaration will be included.
swaggerBase.yaml
swagger: "2.0"
host: "petstore.swagger.io"
basePath: "/api"
schemes: ['http']api.js
/**
* @api [get] /pets
* description: "Returns all pets from the system that the user has access to"
* responses:
* "200":
* description: "A list of pets."
* schema:
* type: "String"
*/
api.route('/pets', function() {
/* Pet code 😺 */
});
/**
* @schema Pet
* required:
* - id
* - name
* properties:
* id:
* type: integer
* format: int64
* name:
* type: string
* tag:
* type: string
*/
// some schema related functionswagger-inline './*.js' --base './swaggerBase.yaml'Output:
swagger: '2.0'
host: petstore.swagger.io
basePath: /api
schemes:
- http
paths:
/pets:
get:
description: Returns all pets from the system that the user has access to
responses:
'200':
description: A list of pets.
schema:
type: String
components:
schemes:
Pet:
required:
- id
- name
properties:
id:
type: integer
format: int64
name:
type: string
tag:
type: stringnpm run build # single build
npm start # build + watchnpm test # single run
npm run test-watch # test + watch