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: 3 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T09:04:09.000Z (8 months ago)
- Last Synced: 2025-03-30T13:02:54.018Z (3 months ago)
- Language: TypeScript
- Size: 188 KB
- Stars: 0
- Watchers: 4
- 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);
})
```