asyncapi / converter-js

Convert to or migrate between AsyncAPI versions with the converter
17 stars 20 forks source link
convert converter get-global-node-release-workflows get-global-releaserc nodejs

AsyncAPI Converter

Convert AsyncAPI documents older to newer versions.

All Contributors

Installation

npm i @asyncapi/converter

Usage

From CLI

To convert an AsyncAPI document in the console needs the official AsyncAPI CLI.

If you don't have CLI installed, run this command to install the CLI globally on your system:

npm install -g @asyncapi/cli

Minimal usage example with output given:

asyncapi convert streetlights.yml -o streetlights2.yml

# Result:
asyncapi: '2.0.0'
channels:
...

Convert to a specific version:

asyncapi convert streetlights.yml -o streetlights2.yml -t 2.3.0

# Result:
asyncapi: '2.3.0'
channels:
...

In JS

const fs = require('fs');
const { convert } = require('@asyncapi/converter')

try {
  const asyncapi = fs.readFileSync('streetlights.yml', 'utf-8')
  console.log(convert(asyncapi, '2.6.0'));
} catch (e) {
  console.error(e);
}

In TS

import { convert } from '@asyncapi/converter';
import type { ConvertVersion, ConvertOptions } from '@asyncapi/converter';

try {
  const toVersion: ConvertVersion = '2.6.0';
  const asyncapi = fs.readFileSync('streetlights.yml', 'utf-8')
  console.log(convert(asyncapi, toVersion));
} catch (e) {
  console.error(e)
}

Conversion 2.x.x to 3.x.x

NOTE: This feature is still WIP, and is until the final release of 3.0.0.

Conversion to version 3.x.x from 2.x.x has several assumptions that should be known before converting:

Known missing features

Development

  1. Setup project by installing dependencies npm install
  2. Write code and tests.
  3. Make sure all tests pass npm test

Contribution

Read CONTRIBUTING guide.

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Maciej Urbańczyk

🚧 💻 🐛 👀 ⚠️ 📖

Fran Méndez

🚧 💻 🐛 👀 ⚠️ 📖

Lukasz Gornicki

🚧 💻 🐛 👀 ⚠️ 📖 🚇

Germán Schnyder

💻 ⚠️

Barbara Czyż

🚇

depimomo

💻

Orville Daley

💻

Ryan R Sundberg

💻

This project follows the all-contributors specification. Contributions of any kind welcome!