Pakinwet / openapi-client-axios

JavaScript client library for consuming OpenAPI-enabled APIs with axios

Home Page:https://www.npmjs.com/package/openapi-client-axios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

openapi-client-axios

CI npm version npm downloads bundle size Total alerts Language grade: JavaScript License Buy me a coffee

JavaScript client library for consuming OpenAPI-enabled APIs with axios. Types included.

Features

  • Create API clients from OpenAPI v3 definitions
  • Client is configured in runtime. No generated code!
  • Generate TypeScript definitions (.d.ts) for your APIs with full IntelliSense support
  • Easy to use API to call API operations using JavaScript methods
    • client.getPet(1)
    • client.searchPets()
    • client.searchPets({ ids: [1, 2, 3] })
    • client.updatePet(1, payload)
  • Built on top of the robust axios JavaScript library
  • Isomorphic, works both in browser and Node.js

Documentation

See full README.md

See DOCS.md

Quick Start

npm install --save axios openapi-client-axios
yarn add axios openapi-client-axios

With promises / CommonJS syntax:

const OpenAPIClientAxios = require('openapi-client-axios').default;

const api = new OpenAPIClientAxios({ definition: 'https://example.com/api/openapi.json' });
api.init()
  .then(client => client.getPetById(1))
  .then(res => console.log('Here is pet id:1 from the api', res.data));

With async-await / ES6 syntax:

import OpenAPIClientAxios from 'openapi-client-axios';

const api = new OpenAPIClientAxios({ definition: 'https://example.com/api/openapi.json' });
api.init();

async function createPet() {
  const client = await api.getClient();
  const res = await client.createPet(null, { name: 'Garfield' });
  console.log('Pet created', res.data);
}

About

JavaScript client library for consuming OpenAPI-enabled APIs with axios

https://www.npmjs.com/package/openapi-client-axios

License:MIT License


Languages

Language:TypeScript 98.7%Language:JavaScript 1.3%