This package has been deprecated

Author message:

This package has been deprecated in favor of @asyncapi/specs (https://www.npmjs.com/package/@asyncapi/specs)

asyncapi

2.6.1 • Public • Published

AsyncAPI

This package provides all the versions of the AsyncAPI schema.

Installation

npm install asyncapi

Usage

Grab a specific AsyncAPI version:

const asyncapi = require('asyncapi/schemas/1.0.0');
 
// Do something with the schema.

Get a list of versions:

const versions = require('asyncapi');
 
console.log(versions);
// Outputs:
//
// {
//   '1.0.0': [Object],
//   '1.1.0': [Object]
// }
 
const asyncapi = versions['1.1.0'];
 
// Do something with the schema.

Author

Fran Méndez – www.fmvilas.com

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i asyncapi

    Weekly Downloads

    1,651

    Version

    2.6.1

    License

    Apache-2.0

    Unpacked Size

    185 kB

    Total Files

    13

    Last publish

    Collaborators

    • fmvilas