Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/apicurio/apicurio-registry-client-sdk-js
- Owner: Apicurio
- License: apache-2.0
- Created: 2022-02-14T13:10:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T14:31:13.000Z (3 months ago)
- Last Synced: 2024-10-23T17:22:07.014Z (3 months ago)
- Language: TypeScript
- Size: 188 KB
- Stars: 0
- Watchers: 5
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
})
```