GithubHelp home page GithubHelp logo

openapigen's Introduction

OApiCodeGen

This package provides an easy and efficient way to generate code for various programming languages from OpenAPI specifications (both OpenAPI 2 and OpenAPI 3 are supported).

Features

  • Language-agnostic code generation for various programming languages, including TypeScript, JavaScript, Python, and more
  • Generate client libraries for RESTful APIs
  • Type-safe code generation
  • Supports both OpenAPI 2 (Swagger) and OpenAPI 3

Installation

npm install --save-dev oapicodegen

Usage

First, import the package in one of your files:

import { Api } from 'oapicodegen';

First of all create context object for future needs:

/* Example data loading:
const openapiJson = await fs.readFile('openapi3.json', 'utf8');
const openapi = JSON.parse(openapiJson);
*/

const api = await Api.load(openapi);

You can get different result depending on the next steps.

Useful examples

Search for all operations with get method

const operations = api
    .paths
    .flatMap((path) => path.operations)
    .filter((operation) => operation.method === 'get');

Find elements by segments of path

const operations = api
    .getPathBySegments(['pets', 'findByStatus'])
    .operations; // operations of /pets/findByStatus path

Find all child elements of a given element

const operations = api
    .getStaticSegmentsAtNextLevel(['pets', 'findByStatus'])
    .operations; // operations of /pets/findByStatus/* paths

Find response by status code

const response = api
    .getPathBySegments(['pets', 'findByStatus'])
    .operations[0]
    .getResponseByStatus(200); // response with status code 200

It's useful to use prettier to format the generated code

import { format } from 'prettier';

const code = format('const a = 1;', { parser: 'typescript' });

Creating zod types from schema

const schema = api
    .getPathBySegments(['pets', 'findByStatus'])
    .operations[0]
    .responses[0]
    .content['application/json']
    .schema;

`const PetResponse = z[${schema?.type}]();`

Project goal

The mission of this project is simple - to help convert an existing OpenAPI 2 or 3 schema in variable form to text.

What this project does NOT do:

  • Downloading files
  • Importing files
  • Exporting files
  • Operating on dependencies other than local
  • Authentication
  • Using with the CLI

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.