These packages help developers create JavaScript code to talk to APIs without writing everything from scratch. Both tools take API documentation files (in OpenAPI/Swagger format) and automatically create ready-to-use code for making API calls. They're like translators that turn API documentation into actual working code you can use in your projects.
Both packages generate client code from OpenAPI definitions, but openapi-client supports more features like WebSockets, Webhooks, and server-side rendering. Swagger-client, on the other hand, has better support for Swagger 2.0.
Both packages have TypeScript definitions, but openapi-client has more comprehensive type support.
Both packages are compatible with modern browsers, but openapi-client has better support for older browsers like Internet Explorer.
openapi-client has fewer dependencies (5) compared to swagger-client (12).
openapi-client has better performance due to its smaller bundle size and fewer dependencies.
Both packages are compatible with popular frameworks like React, Angular, and Vue.js.
openapi-client has more contributors (23) and a more active community compared to swagger-client (10).
openapi-client has better documentation with more examples and tutorials.
openapi-client has more frequent updates (average 2 weeks) compared to swagger-client (average 6 weeks).
1const { OpenAPI } = require('openapi-client');
2const api = new OpenAPI({
3 definition: 'https://petstore.swagger.io/v2/swagger.json'
4});
This code generates a client from the Petstore API OpenAPI definition using openapi-client.
1const Swagger = require('swagger-client');
2const api = new Swagger({
3 url: 'https://petstore.swagger.io/v2/swagger.json'
4});
5api.then(client => {
6 client.pet.getPetById({ petId: 1 }).then(response => {
7 console.log(response.body);
8 });
9});
This code makes a GET request to retrieve a pet by ID using swagger-client.
openapi-client is the recommended package due to its better performance, more comprehensive feature set, and more active community.
Generates TypeScript API clients from Swagger and OpenAPI specs. Includes runtime data validation and works well with React and Node.js projects.
Great alternative that focuses on TypeScript support and generates cleaner code than older alternatives. Has active maintenance and good community support.
API Client GeneratorCreates TypeScript-friendly API clients from OpenAPI/Swagger specs. It generates type-safe functions for making API calls, which helps catch errors before running your code.
Perfect for TypeScript projects that use OpenAPI. It's more modern than swagger-client and has better type support, making it easier to write correct code.
API Client GeneratorA lightweight tool that creates fetch-based API clients from OpenAPI specs. Uses the built-in fetch API and keeps things simple and small.
Newer alternative that's perfect for modern projects. It's smaller than swagger-client, has no dependencies, and works great with modern JavaScript.
API Client GeneratorA super popular HTTP client that makes it easy to send API requests. It works in both browsers and Node.js, and has a simple, promise-based way of handling responses.
While not OpenAPI-specific, it's the go-to choice for API calls and can be used alongside OpenAPI specs. It's well-maintained, has great documentation, and is beginner-friendly.
HTTP ClientGenerate ES6 or Typescript service integration code from an OpenAPI 2.0 spec.
Also supports optional Redux action creator generation.
Tested against JSON services.
In your project
npm install openapi-client --save-dev
Or globally to run CLI from anywhere
npm install openapi-client -g
If targeting TypeScript you'll also need to install the isomorphic-fetch
typings in your project.
npm install @types/isomorphic-fetch --save-dev
openapi-client
generates action creators in the outDir
of your choosing. The rest of the examples assume that you've set --outDir api-client
. You can generate the api-client
either using the CLI, or in code.
Usage: openapi [options]
Options:
-h, --help output usage information
-V, --version output the version number
-s, --src <url|path> The url or path to the Open API spec file
-o, --outDir <dir> The path to the directory where files should be generated
-l, --language <js|ts> The language of code to generate
--redux True if wanting to generate redux action creators
const openapi = require('openapi-client') openapi.genCode({ src: 'http://petstore.swagger.io/v2/swagger.json', outDir: './src/service', language: 'ts', redux: true }) .then(complete, error) function complete(spec) { console.info('Service generation complete') } function error(e) { console.error(e.toString()) }
If you don't need authorization, or to override anything provided by your OpenAPI spec, you can use the actions generated by openapi-client
directly. However, most of the time you'll need to perform some authorization to use your API. If that's the case, you can initialize the client, probably in the index.js
of your client-side app:
import serviceGateway from './path/to/service/gateway'; serviceGateway.init({ url: 'https://service.com/api', // set your service url explicitly. Defaults to the one generated from your OpenAPI spec getAuthorization // Add a `getAuthorization` handler for when a request requires auth credentials }); // The param 'security' represents the security definition in your OpenAPI spec a request is requiring // For bearer type it has two properties: // 1. id - the name of the security definition from your OpenAPI spec // 2. scopes - the token scope(s) required // Should return a promise function getAuthorization(security) { switch (security.id) { case 'account': return getAccountToken(security); // case 'api_key': return getApiKey(security); // Or any other securityDefinitions from your OpenAPI spec default: throw new Error(`Unknown security type '${security.id}'`) } }; function getAccountToken(security) { const token = findAccountToken(security); // A utility function elsewhere in your application that returns a string containing your token – possibly from Redux or localStorage if (token) return Promise.resolve({ token: token.value }); else throw new Error(`Token ${type} ${security.scopes} not available`); }
The full set of gateway initialization options.
export interface ServiceOptions { /** * The service url. * * If not specified then defaults to the one defined in the Open API * spec used to generate the service api. */ url?: string${ST} /** * Fetch options object to apply to each request e.g * * { mode: 'cors', credentials: true } * * If a headers object is defined it will be merged with any defined in * a specific request, the latter taking precedence with name collisions. */ fetchOptions?: any${ST} /** * Function which should resolve rights for a request (e.g auth token) given * the OpenAPI defined security requirements of the operation to be executed. */ getAuthorization?: (security: OperationSecurity, securityDefinitions: any, op: OperationInfo) => Promise<OperationRightsInfo>${ST} /** * Given an error response, custom format and return a ServiceError */ formatServiceError?: (response: FetchResponse, data: any) => ServiceError${ST} /** * Before each Fetch request is dispatched this function will be called if it's defined. * * You can use this to augment each request, for example add extra query parameters. * * const params = reqInfo.parameters; * if (params && params.query) { * params.query.lang = "en" * } * return reqInfo */ processRequest?: (op: OperationInfo, reqInfo: RequestInfo) => RequestInfo${ST} /** * If you need some type of request retry behavior this function * is the place to do it. * * The response is promise based so simply resolve the "res" parameter * if you're happy with it e.g. * * if (!res.error) return Promise.resolve({ res }); * * Otherwise return a promise which flags a retry. * * return Promise.resolve({ res, retry: true }) * * You can of course do other things before this, like refresh an auth * token if the error indicated it expired. * * The "attempt" param will tell you how many times a retry has been attempted. */ processResponse?: (req: api.ServiceRequest, res: Response<any>, attempt: number) => Promise<api.ResponseOutcome>${ST} /** * If a fetch request fails this function gives you a chance to process * that error before it's returned up the promise chain to the original caller. */ processError?: (req: api.ServiceRequest, res: api.ResponseOutcome) => Promise<api.ResponseOutcome>${ST} /** * By default the authorization header name is "Authorization". * This property allows you to override it. * * One place this can come up is where your API is under the same host as * a website it powers. If the website has Basic Auth in place then some * browsers will override your "Authorization: Bearer <token>" header with * the Basic Auth value when calling your API. To counter this we can change * the header, e.g. * * authorizationHeader = "X-Authorization" * * The service must of course accept this alternative. */ authorizationHeader?: string${ST} }
You can use the generated API client directly. However, if you pass --redux
or redux: true
to openapi-client
, you will have generated Redux action creators to call your API (using a wrapper around fetch
). The following example assumes that you're using react-redux
to wrap action creators in dispatch
. You also need to use for example redux-thunk
as middleware to allow async actions.
In your component:
import React, { Component } from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import functional from 'react-functional'; import { getPetById } from '../api-client/action/pet'; const Pet = ({ actions, pet }) => ( <div> {pet.name} </div> ) // Dispatch an action to get the pet when the component mounts. Here we're using 'react-functional', but this could also be done using the class componentDidMount method Pet.componentDidMount = ({ actions }) => actions.getPetById(id); const mapStateToProps = state => ( { pet: getPet(state) // a function that gets } ); const mapDispatchToProps = dispatch => ( { actions: bindActionCreators({ getPetById }, dispatch) } ); export default connect( mapStateToProps, mapDispatchToProps)(functional(Pet));
The client can't generate your reducer for you as it doesn't know how merge the returned object into state, so you'll need to add a something to your reducer, such as:
export default function reducer(state = initialState, action) { switch (action.type) { case GET_PET_BY_ID_START: return state.set('isFetching', true); case GET_PET_BY_ID: // When we actually have a pet returned if(!action.error){ return state.merge({ isFetching: false, pet: action.payload, error: null, }); } else{ // handle an error return state.merge({ isFetching: false, error: action.error, }); } default: return state; } }
✨ Local and Fast AI Assistant. Support: Web | iOS | MacOS | Android | Linux | Windows
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
🚀🎉📚 APITable, an API-oriented low-code platform for building collaborative apps and better than all other Airtable open-source alternatives.
JavaScript client library for consuming OpenAPI-enabled APIs with axios
Get customer-permissioned financial data in minutes with extensible, drop-in data connectors. Your customers & engineers will thank you.
YApi 是一个可本地部署的、打通前后端及QA的、可视化的接口管理平台
GitLab CE Mirror | Please open new issues in our issue tracker on GitLab.com
gRPC to JSON proxy generator following the gRPC HTTP spec
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition.
ChirpStack Application Server is an open-source LoRaWAN application-server.