@openapi-generator-plus/typescript-fetch-rn-client-generator

An OpenAPI Generator Plus template for a TypeScript API client using Fetch in React Native


Keywords
openapi-generator-plus, openapi-generator-plus-generator, openapi, openapi-generator, typescript, fetch, react-native, client
License
Apache-2.0
Install
npm install @openapi-generator-plus/typescript-fetch-rn-client-generator@1.2.1

Documentation

OpenAPI Generator Plus Generator Templates

A project containing generator templates and template helpers for OpenAPI Generator Plus

Building

This project uses nvm for managing the versions of node, and pnpm for installing packages and managing the monorepo project structure.

To setup nvm:

nvm install
nvm use

To install pnpm:

npm -g install pnpm

To install and build the project:

pnpm install
pnpm build
pnpm watch

To run the tests:

pnpm test

Linking with OpenAPI Generator Plus Core

If you're making changes to core at the same time:

  1. In the openapi-generator-plus workspace, execute pnpm run link, then pnpm watch
  2. In this workspace, execute pnpm run link, then pnpm watch

Templates

OpenAPI Generator Plus has its own object model for representing the API specification. Templates from other generators must be rewritten or modified. This is usually not a complicated process as the properties available to templates are well-defined by TypeScript interfaces.

Handlebars

OpenAPI Generator Plus uses Handlebars for templating. Handlebars builds on the functionality of the mustache templates used in swagger-codegen making templates more powerful and easier to customise. Handlebars also supports custom helpers to put more capability into templates, such as case transformations.

The handlebars-templates package includes a number of helpers that are used throughout the generator templates.