JSPM

@comet-cli/parser-open-api

0.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q23544F
  • License MIT

OpenAPI v3 parser for comet

Package Exports

  • @comet-cli/parser-open-api

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@comet-cli/parser-open-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@comet-cli/parser-open-api

This package contains the implementation of an OpenAPI v3 parser.

Usage

import OpenApiParser from '@comet-cli/parser-open-api';

async function main() {
  const parser = new OpenApiParser();
  const spec = await parser.execute('api.yaml');
}