Skip to content

MaSch0212/goast

Repository files navigation

gOAst

GitHub License GitHub Actions Workflow Status
@goast/core NPM Version @goast/typescript NPM Version @goast/kotlin NPM Version
@goast/core JSR Version @goast/typescript JSR Version @goast/kotlin JSR Version

gOAst stands for generative Open API specification transformer, a tool designed to transform OpenAPI specifications into various forms with flexibility and extensibility at its core.

Motivation 💥

While numerous OpenAPI generators exist, they often cater to specific languages or frameworks and lack the flexibility for customization or extension to meet unique requirements.

gOAst aims to bridge this gap by offering a highly flexible and extensible platform for transforming OpenAPI specifications into any desired form. It not only includes a set of pre-built generators but also simplifies the process of creating new ones or extending existing functionalities.

Features 🔥

Ease of Use: Get up and running with minimal setup.

Type Safety: Ensures robust and error-free code.

Basic AST Support: For TypeScript and Kotlin, facilitating further custom transformations.

Module Support: Compatible with both ESM and CJS modules.

Runtime Support: Works in Node.js, Deno and Bun.

How It Works 🔧

gOAst employs a structured approach to transform OpenAPI specifications, making it easy to extend or generate new data forms:

  1. Parse OpenAPI Specification Files

    • Supports versions 2.0, 3.0, and 3.1 in both JSON and YAML formats.
    • Allows parsing multiple files together (e.g., from different microservices).
    • Facilitates the use of mixed OpenAPI specification versions and formats.
  2. Load External References ($ref)

    • Supports loading of local and HTTP/HTTPS references.
    • Manages references across different versions of OpenAPI specifications.
  3. Transform to a General Format

    • Standardizes various OpenAPI versions into a unified format for subsequent transformations.
  4. Generate Output using a Pipeline Approach

    • Defines a transformation pipeline to produce the desired output.
    • Generators can utilize information from previous steps and modify the output as needed, enhancing flexibility (e.g., a Service generator that relies on a Model generator).

Getting Started 🚀

Install the core package and the desired generator(s) using npm:

npm install @goast/core @goast/typescript

Use the core package to parse and transform an OpenAPI specification:

import { OpenApiGenerator } from '@goast/core';
import { TypeScriptModelsGenerator } from '@goast/typescript';

async function main() {
  const generator = new OpenApiGenerator()
    // Add a generator using a class
    .useType(TypeScriptModelsGenerator)
    // Add a generator using a function
    .useFn((ctx, cfg) => {
      // Do the generation
      return {}; // Return information about the generated files so it can be used by other generators
    })
    // Add a generator using an object implementing `OpenApiGenerationProvider`
    .useValue({ generate: (ctx, cfg) => ({}) });

  // Generate for one of more OpenAPI specification files
  await generator.parseAndGenerate('path/to/openapi.json', 'path/to/another/openapi.yaml');

  // Alternatively, you can generate output for all specifications in a directory.
  // By default, it will only consider files within the directory (non-recursively) with the extensions: .json, .yaml, .yml.
  await generator.parseAndGenerateFromDir('path/to/openapi/specs');
}

main();

Outputs from a previous generator can be accessed by the input property of the context object: Typesafe Outputs

Extending Generators

All generators included with gOAst are implemented by classes. This allows for easy extension by creating a new class that extends the desired generator. Most generators consist of two classes. One for generation of one entity (e.g. a schema or endpoint) and one for the whole specification.

In this example we are extending the model generator for typescript to modify the type names:

import { ApiSchema, Factory, toCasing } from '@goast/core';
import {
  DefaultTypeScriptModelGenerator,
  TypeScriptModelGeneratorContext,
  TypeScriptModelsGenerator,
} from '@goast/typescript';

class MyTypeScriptModelGenerator extends DefaultTypeScriptModelGenerator {
  protected override getDeclarationTypeName(ctx: TypeScriptModelGeneratorContext, schema: ApiSchema): string {
    let name = schema.name;
    // Modify the name of the schema
    return toCasing(name, ctx.config.typeNameCasing);
  }
}

export class MyTypeScriptModelsGenerator extends TypeScriptModelsGenerator {
  constructor() {
    super(Factory.fromType(MyTypeScriptModelGenerator));
  }
}

This custom class can now be used in the same way as the original model generator:

// ...
generator.useType(MyTypeScriptModelsGenerator, {
  /* Options (Optional) */
});
// ...

Available Libraries 📚

Name Description Links
@goast/core Core library for parsing and transforming OpenAPI specifications NPM - JSR - README
@goast/typescript TypeScript generators for OpenAPI specifications NPM - JSR - README
@goast/kotlin Kotlin generators for OpenAPI specifications NPM - JSR - README

Documentation 📖

A more detailed documentation can be found in the Wiki.

Contributing 🧑🏻‍💻

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

gOAst Development 🧑‍💻

To contribute to the gOAst project, make sure you have the following prerequisites installed:

To set up the project for local development, follow these steps:

  1. Clone the repository (or your fork) using Git:
    git clone https://github.com/MaSch0212/goast.git
  2. Install the project dependencies using deno:
    deno install
  3. Create a playground.ts file and adjust it according to your needs.
  4. Run the pg script:
    deno task pg

Other Scripts

  • deno task npm - Builds all NPM packages.
  • deno task npm:<core|typescript|kotlin> - Builds the specified NPM package.
  • deno task test - Runs the unit tests for all packages.
  • deno task test:<core|typescript|kotlin> - Runs the unit tests for the specified package.

License 🔑

Distributed under the MIT License. See LICENSE for more information.

About

Generative Open API Specification Transformer

Resources

License

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •