Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/apicurio/apicurio-registry-client-sdk-js

Apicurio Registry client for JavaScript
https://github.com/apicurio/apicurio-registry-client-sdk-js

Last synced: 2 months ago
JSON representation

Apicurio Registry client for JavaScript

Awesome Lists containing this project

README

        

# apicurio-registry-client-sdk-js

Apicurio Registry client for JavaScript

## Installation

Install using npm:

```shell
npm install apicurio-registry-client
```

Import the library into your JavaScript or TypeScript application to begin using it:

```ts
import { AdminApi } from 'apicurio-registry-client';

const adminApi = new AdminApi(configuration);

adminApi.listGlobalRules().then((response) => {
console.log(response);
})
```