GitPedia

Openapi typescript code generator

TypeScript code generator via OpenAPI scheme.

From Himenon·Updated June 2, 2026·View on GitHub·

This library provides TypeScript type definitions and extracted parameters from OpenAPI v3.0.x compliant specifications. Template literals are used to generate the code, which is accurately converted to TypeScript code. Since the parameters extracted from OpenAPI can be used freely, it can be used for automatic generation of API Client and Server Side code, load balancer configuration files, etc. The project is written primarily in TypeScript, distributed under the MIT License license, first published in 2020. Key topics include: deno, openapi, openapi-codegen, openapi-generator, openapi-typescript.

@himenon/openapi-typescript-code-generator

日本語

This library provides TypeScript type definitions and extracted parameters from OpenAPI v3.0.x compliant specifications.
Template literals are used to generate the code, which is accurately converted to TypeScript code.
Since the parameters extracted from OpenAPI can be used freely, it can be used for automatic generation of API Client and Server Side code, load balancer configuration files, etc.

Playground

Installation

bash
npm i -D @himenon/openapi-typescript-code-generator # or pnpm i -D @himenon/openapi-typescript-code-generator # or yarn add -D @himenon/openapi-typescript-code-generator

DEMO

Usage

The example shown here can be cloned from the DEMO repository to see how it works.

Generate typedef-only code

ts
import * as fs from "fs"; import { CodeGenerator } from "@himenon/openapi-typescript-code-generator"; const main = () => { const codeGenerator = new CodeGenerator("your/openapi/spec.yml"); const code = codeGenerator.generateTypeDefinition(); fs.writeFileSync("client.ts", code, { encoding: "utf-8" }); }; main();

Generate code containing the API Client

ts
import * as fs from "fs"; import { CodeGenerator } from "@himenon/openapi-typescript-code-generator"; import * as Templates from "@himenon/openapi-typescript-code-generator/templates"; import type * as Types from "@himenon/openapi-typescript-code-generator/types"; const main = () => { const codeGenerator = new CodeGenerator("your/openapi/spec.yml"); const apiClientGeneratorTemplate: Types.CodeGenerator.CustomGenerator<Templates.FunctionalApiClient.Option> = { generator: Templates.FunctionalApiClient.generator, option: {}, }; const code = codeGenerator.generateTypeDefinition([ codeGenerator.getAdditionalTypeDefinitionCustomCodeGenerator(), apiClientGeneratorTemplate, ]); fs.writeFileSync("client.ts", code, { encoding: "utf-8" }); }; main();

The variation of template code

This library provides three types of templates

ts
import * as Templates from "@himenon/openapi-typescript-code-generator/templates"; Templates.ClassApiClient.generator; Templates.FunctionalApiClient.generator; Templates.CurryingFunctionalApiClient.generator;

Templates.ClassApiClient.generator

We provide a class-based API client. Please inject the API client dependency and use it instead of constructor.

ts
export interface RequestArgs { httpMethod: HttpMethod; url: string; headers: ObjectLike | any; requestBody?: ObjectLike | any; requestBodyEncoding?: Record<string, Encoding>; queryParameters?: QueryParameters | undefined; } export interface ApiClient<RequestOption> { request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => Promise<T>; } export class Client<RequestOption> { private baseUrl: string; constructor( private apiClient: ApiClient<RequestOption>, baseUrl: string, ) { this.baseUrl = baseUrl.replace(/\/$/, ""); } public async createPublisherV2<RequestContentType extends RequestContentType$createPublisherV2>( params: Params$createPublisherV2<RequestContentType>, option?: RequestOption, ): Promise<Response$createPublisherV2$Status$200["application/json"]> { const url = this.baseUrl + `/create/v2/publisher/{id}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json", }; const requestEncodings = { "application/x-www-form-urlencoded": { color: { style: "form", explode: false, }, }, "application/json": { color: { style: "form", explode: false, }, }, }; return this.apiClient.request( { httpMethod: "POST", url, headers, requestBody: params.requestBody, requestBodyEncoding: requestEncodings[params.headers["Content-Type"]], }, option, ); } }

Templates.FunctionalApiClient.generator

We also provide a function-based API client that replaces the class-based API client with createClient. Please inject the API client dependency and use it.

ts
export interface RequestArgs { httpMethod: HttpMethod; url: string; headers: ObjectLike | any; requestBody?: ObjectLike | any; requestBodyEncoding?: Record<string, Encoding>; queryParameters?: QueryParameters | undefined; } export interface ApiClient<RequestOption> { request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => Promise<T>; } export const createClient = <RequestOption>(apiClient: ApiClient<RequestOption>, baseUrl: string) => { const _baseUrl = baseUrl.replace(/\/$/, ""); return { createPublisherV2: <RequestContentType extends RequestContentType$createPublisherV2>( params: Params$createPublisherV2<RequestContentType>, option?: RequestOption, ): Promise<Response$createPublisherV2$Status$200["application/json"]> => { const url = _baseUrl + `/create/v2/publisher/{id}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json", }; const requestEncodings = { "application/x-www-form-urlencoded": { color: { style: "form", explode: false, }, }, "application/json": { color: { style: "form", explode: false, }, }, }; return apiClient.request( { httpMethod: "POST", url, headers, requestBody: params.requestBody, requestBodyEncoding: requestEncodings[params.headers["Content-Type"]], }, option, ); }, }; };

Templates.CurryingFunctionalApiClient.generator

Tree shaking support

We also provide a curried function-based API client that requires injection of API client for each operationId. The first function argument demands ApiClient while the second function argument demands RequestArgs. The ApiClient interface is different from the others, as it requires uri as an argument.

This is designed for use cases that utilize tree shaking.

ts
export interface RequestArgs { httpMethod: HttpMethod; uri: string; // <------------------ Note that the uri headers: ObjectLike | any; requestBody?: ObjectLike | any; requestBodyEncoding?: Record<string, Encoding>; queryParameters?: QueryParameters | undefined; } export interface ApiClient<RequestOption> { request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => Promise<T>; } export const createPublisherV2 = <RequestOption>(apiClient: ApiClient<RequestOption>) => <RequestContentType extends RequestContentType$createPublisherV2>( params: Params$createPublisherV2<RequestContentType>, option?: RequestOption, ): Promise<Response$createPublisherV2$Status$200["application/json"]> => { const uri = `/create/v2/publisher/{id}`; const headers = { "Content-Type": params.headers["Content-Type"], Accept: "application/json", }; const requestEncodings = { "application/x-www-form-urlencoded": { color: { style: "form", explode: false, }, }, "application/json": { color: { style: "form", explode: false, }, }, }; return apiClient.request( { httpMethod: "POST", uri, headers, requestBody: params.requestBody, requestBodyEncoding: requestEncodings[params.headers["Content-Type"]], }, option, ); };

Split the type definition file and the API Client implementation

ts
import * as fs from "fs"; import { CodeGenerator } from "@himenon/openapi-typescript-code-generator"; import * as Templates from "@himenon/openapi-typescript-code-generator/templates"; import type * as Types from "@himenon/openapi-typescript-code-generator/types"; const main = () => { const codeGenerator = new CodeGenerator("your/openapi/spec.yml"); const apiClientGeneratorTemplate: Types.CodeGenerator.CustomGenerator<Templates.FunctionalApiClient.Option> = { generator: Templates.FunctionalApiClient.generator, option: {}, }; const typeDefCode = codeGenerator.generateTypeDefinition(); const apiClientCode = codeGenerator.generateCode([ { generator: () => { return [`import { Schemas, Responses } from "./types";`]; }, }, codeGenerator.getAdditionalTypeDefinitionCustomCodeGenerator(), apiClientGeneratorTemplate, ]); fs.writeFileSync("types.ts", typeDefCode, { encoding: "utf-8" }); fs.writeFileSync("apiClient.ts", apiClientCode, { encoding: "utf-8" }); }; main();

Create a Code Template

The examples in this section can be used in the following ways

ts
import * as fs from "fs"; import { CodeGenerator } from "@himenon/openapi-typescript-code-generator"; import type * as Types from "@himenon/openapi-typescript-code-generator/types"; /** Write the definition of the Code Template here. */ const customGenerator: Types.CodeGenerator.CustomGenerator<{}> = { /** .... */ }; const codeGenerator = new CodeGenerator("your/openapi/spec.yml"); const code = codeGenerator.generateCode([customGenerator]); fs.writeFileSync("output/file/name", code, { encoding: "utf-8" });

Define a text-based code template

A self-defined code generator can return an array of string.

ts
import * as Types from "@himenon/openapi-typescript-code-generator/types"; interface Option { showLog?: boolean; } const generator: Types.CodeGenerator.GenerateFunction<Option> = (payload: Types.CodeGenerator.Params[], option): string[] => { if (option && option.showLog) { console.log("show log message"); } return ["Hello world"]; }; const customGenerator: Types.CodeGenerator.CustomGenerator<Option> = { generator: generator, option: {}, };

Define using the information extracted from OpenAPI Schema

The self-defined code generator can accept parameters extracted from OpenAPI Schema.
See Type definitions for available parameters.

ts
import * as Types from "@himenon/openapi-typescript-code-generator/types"; interface Option {} const generator: Types.CodeGenerator.GenerateFunction<Option> = (payload: Types.CodeGenerator.Params[], option): string[] => { return payload.map(params => { return `function ${params.operationId}() { console.log("${params.comment}") }`; }); }; const customGenerator: Types.CodeGenerator.CustomGenerator<Option> = { generator: generator, option: {}, };

Define any Data Types Format

Convert a Data Type with the following format to any type definition.

yaml
components: schemas: Binary: type: string format: binary IntOrString: type: string format: int-or-string AandB: type: string format: A-and-B

The option to convert the Data Type Format to an arbitrary type definition is defined as follows.

ts
import { CodeGenerator, Option } from "@himenon/openapi-typescript-code-generator"; const option: Option = { convertOption: { formatConversions: [ { selector: { format: "binary", }, output: { type: ["Blob"], }, }, { selector: { format: "int-or-string", }, output: { type: ["number", "string"], }, }, { selector: { format: "A-and-B", }, output: { type: ["A", "B"], multiType: "allOf", }, }, ], }, }; const codeGenerator = new CodeGenerator(inputFilename, option);

The typedef generated by this will look like this

ts
export namespace Schemas { export type Binary = Blob; export type IntOrString = number | string; export type AandB = A & B; }

Define a code template with Template literals

You can extend your code using the API for generating code.
You can directly use the Template literals or use the wrapper API provided by this library.

ts
import * as Types from "@himenon/openapi-typescript-code-generator/types"; import { TsGenerator } from "@himenon/openapi-typescript-code-generator/api"; interface Option {} const factory = TsGenerator.Factory.create(); const generator: Types.CodeGenerator.GenerateFunction<Option> = ( payload: Types.CodeGenerator.Params[], option, ): Types.CodeGenerator.IntermediateCode[] => { return payload.map(params => { return factory.InterfaceDeclaration.create({ export: true, name: params.convertedParams.functionName, members: [], }); }); }; const customGenerator: Types.CodeGenerator.CustomGenerator<Option> = { generator: generator, option: {}, };

API

CodeGenerator

ts
import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";

validateOpenApiSchema

Performs validation of the input OpenAPI Schema.

generateTypeDefinition

Generates code that converts OpenAPI Schema to TypeScript type definitions.

generateCode

You can specify several of your own code generators, and the generators can use parameters extracted from OpenAPI Schema.
It internally performs the conversion of an array of string as a string.

For example, creating a generator in units of file divisions increases the reusability of the generator.

getCodeGeneratorParamsArray

It provides parameters extracted from OpenAPI Schema.

getAdditionalTypeDefinitionCustomCodeGenerator

This is a type definition file for Templates.FunctionalApiClient. The reason it is not included in generateTypeDefinition is that you may not use the type definition generated by this function depending on your usage.

※ The reason it is not included in generateTypeDefinition is that you may not use the type definitions generated by this function depending on your application.

TsGenerator

ts
import { TsGenerator } from "@himenon/openapi-typescript-code-generator/api";

This is an API for generating code using Template literals.
It is subject to change without notice.

OpenApiTools

ts
import { OpenApiTools } from "@himenon/openapi-typescript-code-generator/api";

Parser

  • OpenApiTools.Parser

This is the API for parsing OpenAPI Schema.
It is subject to change without notice.

Restrictions

Directory Restrictions for Remote Reference

There is a limitation on the directory structure supported.
To simplify implementation when converting directory structures to TypeScript namespaces, Remote References using $ref should only be defined in the following directory structures.
If you want to extend it, please fork this repository and do it yourself.

spec.yml // entry file
components/
  headers/
  parameters/
  pathItems/
  requestBodies/
  responses/
  schemas/
  paths/

HTTP communication restrictions for Remote Reference

$ref: http://.... Currently not supported. We hope to support it in the future.

Contributions

First of all, thank you for your interest.
When converting from the API specification to TypeScript code, resolving reference relationships can be particularly challenging, and there may not be enough test cases.
Adding test cases is a very powerful support for stabilizing the behavior, so please report any bugs you find that are behaving strangely.
Also, the basic design concepts of this repository can be found below. If you want to make changes that do not follow these concepts, please fork and extend them.
If your changes are in line with the design concept, please submit a pull request or issue!

Design Concept

  • Be typedef first.
  • Typedefs should not contain any entities (file size should be 0 when typedefs are converted to .js)
  • The directory structure should be mapped to the typedef structure.
  • No dependency on any API client library.
  • Can be extended by Template literals.
  • Conform to the OpenAPI specification.
  • It should be a single file to maintain portability.

Development

bash
git clone https://github.com/Himenon/openapi-typescript-code-generator.git cd openapi-typescript-code-generator pnpm i #### your change pnpm build pnpm run test:code:gen pnpm run update:snapshot # if you changed pnpm run test

Useful development tools

Prettier (or other formatters)

LICENCE

@himenon/openapi-typescript-code-generator, MIT

Reference implementation

Validation Design

Contributors

Showing top 9 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from Himenon/openapi-typescript-code-generator via the GitHub API.Last fetched: 6/24/2026