@asyncapi/modelina
TypeScript icon, indicating that this package has built-in type declarations

3.4.9 • Public • Published

AsyncAPI Modelina blackbox pipeline status Coverage Status Project Status: Active – The project has reached a stable, usable state and is being actively developed. Maintenance score Npm latest version License last commit Discussions Website Playground All Contributors

Your one-stop tool for generating accurate and well-tested models for representing the message payloads. Use it as a tool in your development workflow, or a library in a larger integrations, entirely in your control.


Installing Modelina

Run this command to install Modelina in your project:

npm install @asyncapi/modelina

AsyncAPI CLI

If you have the AsyncAPI CLI installed (ONLY support AsyncAPI inputs), you can run the following command to use Modelina:

asyncapi generate models <language> ./asyncapi.json

What Does Modelina Do?

Modelina put YOU in control of your data models, here is how...

Modelina lets you generate data models from many types of inputs
const asyncapi = ...
const jsonschema = ...
const openapi = ... 
const metamodel = ... 
...
const models = await generator.generate(
  asyncapi | jsonschema | openapi | metamodel
);
Use the same inputs across a range of different generators
const generator = new TypeScriptGenerator();
const generator = new CsharpGenerator();
const generator = new JavaGenerator();
const generator = new RustGenerator();
...
const models = await generator.generate(input);
Easily let you interact with the generated models.
  • Want to show the generated models on a website? Sure!
  • Want to generate the models into files? Sure!
  • Want to combine all the models into one single file? Sure!

Whatever interaction you need, you can create.

const models = await generator.generate(input);
for (const model in models) { 
  const generatedCode = model.result;
  const dependencies = model.dependencies;
  const modeltype = model.type;
  const modelName = model.modelName;
  ...
}
Easily modify how models are constrained into the output
const generator = new TypeScriptGenerator({
  constraints: {
    modelName: ({modelName}) => {
      // Implement your own constraining logic
      return modelName;
    }
  }
});
Seamlessly layer additional or replacement code on top of each other to customize the models to your use-case
const generator = new TypeScriptGenerator({
  presets: [
    {
      class: {
        additionalContent({ content }) {
          return `${content}
public myCustomFunction(): string {
  return 'A custom function for each class';
}`;
        },
      }
    }
  ]
});
const models = await generator.generate(input);
Seamlessly lets you combine multiple layers of additional or replacement code
const myCustomFunction1 = {
  class: {
    additionalContent({ content }) {
      return `${content}
public myCustomFunction(): string {
return 'A custom function for each class';
}`;
    },
  }
};
const myCustomFunction2 = {...};
const generator = new TypeScriptGenerator({
  presets: [
    myCustomFunction1,
    myCustomFunction2
  ]
});
const models = await generator.generate(input);

Features

The following table provides a short summary of available features for supported output languages. To see the complete feature list for each language, please click the individual links for each language.

Supported inputs
AsyncAPI We support the following AsyncAPI versions: 2.0.0 -> 2.6.0, which generates models for all the defined message payloads. It supports the following schemaFormats AsyncAPI Schema object, JSON Schema draft 7, AVRO 1.9, RAML 1.0 data type, and OpenAPI 3.0 Schema.
JSON Schema We support the following JSON Schema versions: Draft-4, Draft-6 and Draft-7
OpenAPI We support the following OpenAPI versions: Swagger 2.0, OpenAPI 3.0 and 3.1, which generates models for all the defined request and response payloads.
TypeScript We currently support TypeScript types as file input for model generation
Meta model This is the internal representation of a model for Modelina, it is what inputs gets converted to, and what generators are provided to generate code. Instead of relying on an input processor, you can create your own models from scratch and still take advantage on the generators and the features.

Supported outputs
Java Class and enum generation: generation of equals, hashCode, toString, Jackson annotation, custom indentation type and size, etc
TypeScript Class, interface and enum generation: generation of example code, un/marshal functions, custom indentation type and size, etc
C# Class and enum generation: generation of example code, serializer and deserializer functions, custom indentation type and size, etc
Go Struct and enum generation: custom indentation type and size, etc
JavaScript Class generation: custom indentation type and size, etc
Dart Class and enum generation: json_annotation
Rust Struct/tuple and enum generation: generation of `implement Default`, generate serde macros, custom indentation type and size, etc
Python Class and enum generation: custom indentation type and size, etc
Kotlin Class and enum generation: use of data classes where appropriate, custom indentation type and size, etc
C++ Class and enum generation: custom indentation type and size, etc
PHP Class and enum generation: custom indentation type and size, descriptions, etc
Scala Class and enum generation: custom indentation type and size, descriptions, etc

Requirements

The following are a requirement in order to use Modelina.

Documentation

A feature in Modelina cannot exists without an example and documentation for it. You can find all the documentation here.

Examples

Do you need to know how to use the library in certain scenarios?

We have gathered all the examples in a separate folder and they can be found under the examples folder.

Versioning and maintenance

As of version 1, Modelina has a very strict set of changes we are allowed to do before it requires a major version change. In short, any changes that change the generated outcome are not allowed as it's a breaking change for the consumer of the generated models.

Here is a list of changes we are allowed to do that would not require a breaking change:

  • Adding new features (that do not change existing output), such as generators, presets, input processors, etc.
  • Change existing features, by providing options that default to current behavior. This could be a preset that adapts the output based on options, as long as the API of Modelina and the API of the generated models does not have any breaking changes.
  • Bug fixes where the generated code is otherwise unusable (syntax errors, etc).

Breaking changes are allowed and expected at a frequent rate, of course where it makes sense we will try to bundle multiple changes together.

We of course will do our best to uphold this, but mistakes can happen, and if you notice any breaking changes please let us know!

Because of the number of the limited number of champions, only the most recent major version will be maintained.

Major versions are currently happening at a 3-month cadence (in a similar fashion as the AsyncAPI specification), this will happen in January, April, June, and September.

Development

We try to make it as easy for you as possible to set up your development environment to contribute to Modelina. You can find the development documentation here.

Contributing

Without contributions, Modelina would not exist, it's a community project we build together to create the best possible building blocks, and we do this through champions.

We have made quite a comprehensive contribution guide to give you a lending hand in how different features and changes are introduced.

If no documentation helps you, here is how you can reach out to get help:

Contributors

Thanks go out to these wonderful people (emoji key):

Maciej Urbańczyk
Maciej Urbańczyk

🐛 💻 📖 🤔 🚧 💬 ⚠️ 👀
czlowiek488
czlowiek488

🐛 👀 🤔
Sergio Moya
Sergio Moya

🐛 💻 ⚠️ 📖 👀
Jonas Lagoni
Jonas Lagoni

🐛 💻 📖 🤔 🚧 💬 ⚠️ 👀
Lukasz Gornicki
Lukasz Gornicki

👀 🐛 💻
Arjun Garg
Arjun Garg

💻
Fran Méndez
Fran Méndez

👀
Kanwal Singh
Kanwal Singh

💻
Alejandra Quetzalli
Alejandra Quetzalli

👀 📖
MD SAIF  HUSAIN
MD SAIF HUSAIN

💡 ⚠️ 📖 💻
Sudipto Ghosh
Sudipto Ghosh

💡 ⚠️ 📖
panwauu
panwauu

💻 ⚠️ 💡 📖 🐛
Stefan E. Mayer
Stefan E. Mayer

🐛
Talmiz Ahmed
Talmiz Ahmed

📖 ⚠️ 💡
Marco
Marco

🐛
quadrrem
quadrrem

💻 ⚠️
Kamil Janeček
Kamil Janeček

⚠️ 🐛 💻
mahakporwal02
mahakporwal02

💡 ⚠️ 📖 💻
Debajyoti Halder
Debajyoti Halder

💻 ⚠️ 📖 💡 🚧
Ritik Rawal
Ritik Rawal

📖 💻 ⚠️ 💡
Ishan
Ishan

💻 ⚠️
Samriddhi
Samriddhi

💻 ⚠️ 📖 💡 🚧
Gábor Magyar
Gábor Magyar

💻 ⚠️ 📖 💡
ibernabeudev
ibernabeudev

💻 ⚠️ 💡 📖
Arkadiusz Słowikowski
Arkadiusz Słowikowski

💻 ⚠️ 💡 📖
Willem Gillis
Willem Gillis

💻 ⚠️ 🐛
rmasarovic
rmasarovic

💻 📖 ⚠️ 💡
Owais Hasnath Ahmed
Owais Hasnath Ahmed

💻 ⚠️ 📖
PanMan
PanMan

📖
artur-ciocanu
artur-ciocanu

💻 🐛 💡 📖 ⚠️ 🚧
Cyprian Gracz
Cyprian Gracz

💻 ⚠️ 🐛
Leigh Johnson
Leigh Johnson

💻 ⚠️ 💡 📖 🚧 👀
Nitin Tejuja
Nitin Tejuja

⚠️ 💡
Kenneth Aasan
Kenneth Aasan

💻 ⚠️ 🚧 📖
Amit Kumar Sharma
Amit Kumar Sharma

⚠️ 📖 💡
Andrey Zaytsev
Andrey Zaytsev

💻 💡 📖 ⚠️
Tenshi Codes
Tenshi Codes

🚇
Yushi OMOTE
Yushi OMOTE

🐛 💻
Zbigniew Malcherczyk
Zbigniew Malcherczyk

🐛 🚇 💻 💡 ⚠️ 👀
200Puls
200Puls

💻 ⚠️
Anay Sarkar
Anay Sarkar

💡 💻 ⚠️
Louis Xhaferi
Louis Xhaferi

💻
Sambhav Gupta
Sambhav Gupta

📖 👀 🎨 💻 🐛
Abhay Garg
Abhay Garg

💻 💡 ⚠️ 📖
henrikjon
henrikjon

💻 ⚠️ 📖 💡
Mohammad Yasir
Mohammad Yasir

💻
Savio Dias
Savio Dias

💻 🚇 🐛
Ishaan Shah
Ishaan Shah

💻
Shreyas0410
Shreyas0410

💻
beku-epitome
beku-epitome

💻 👀 ⚠️
Joshua Michael Daly
Joshua Michael Daly

🐛
Daniel KJ
Daniel KJ

💻 ⚠️ 💡 👀
Bhavik Agarwal
Bhavik Agarwal

🎨
Rishi
Rishi

💻 🎨
Rohith Boppey
Rohith Boppey

💻 🎨
Ashish Padhy
Ashish Padhy

💻 ⚠️ 🚇
Jean-François Côté
Jean-François Côté

💻 ⚠️ 💡 📖
Sumant.xD
Sumant.xD

⚠️ 🚇 💻
Aryan Singh
Aryan Singh

💻
Markus Poerschke
Markus Poerschke

💻 ⚠️ 💡 📖
James Moey
James Moey

💻 ⚠️
tomwolanski
tomwolanski

🐛
Kristupas
Kristupas

💻
Devansh-Bhatt
Devansh-Bhatt

⚠️ 🚇
Ansh Pancholi
Ansh Pancholi

💻
Maeght Loan
Maeght Loan

💻 📖
Prince Rajpoot
Prince Rajpoot

💻
harshit mishra
harshit mishra

💻
PeteAudinate
PeteAudinate

💻
jano-petras
jano-petras

💻 📖 ⚠️
Nilkanth Parmar
Nilkanth Parmar

💻 ⚠️ 💡 📖
Ashmit JaiSarita Gupta
Ashmit JaiSarita Gupta

💻 🎨 📖 🚧 ⚠️ 👀
Harshil Jani
Harshil Jani

💻 ⚠️
Mintu Gogoi
Mintu Gogoi

⚠️
Devansh Mahant
Devansh Mahant

📖
Asish Kumar
Asish Kumar

📖
Ankur Singh
Ankur Singh

📖
RowlandBanks
RowlandBanks

💻 ⚠️ 🐛
Moritz Kalwa
Moritz Kalwa

💻 ⚠️ 🐛 📖
Akshit Gupta
Akshit Gupta

💻 🐛
Athul Tulasidasan
Athul Tulasidasan

💻 💡 📖 ⚠️
souvik
souvik

💻 ⚠️ 💡 📖
Louis-PhilippeGentile
Louis-PhilippeGentile

💻 ⚠️ 📖 🐛
Akhil Jamwal
Akhil Jamwal

💻 ⚠️

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

Package Sidebar

Install

npm i @asyncapi/modelina

Weekly Downloads

14,328

Version

3.4.9

License

Apache-2.0

Unpacked Size

3.03 MB

Total Files

1737

Last publish

Collaborators

  • fmvilas
  • derberg
  • asyncapi-bot