https://github.com/coderade/node-kong-admin-ts
A port of the Kong Admin API Client (node-kong-admin) project for NodeJS/Typescript
https://github.com/coderade/node-kong-admin-ts
Last synced: 5 months ago
JSON representation
A port of the Kong Admin API Client (node-kong-admin) project for NodeJS/Typescript
- Host: GitHub
- URL: https://github.com/coderade/node-kong-admin-ts
- Owner: coderade
- Created: 2020-10-28T12:17:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-25T13:13:15.000Z (almost 5 years ago)
- Last Synced: 2025-10-24T08:45:01.731Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 338 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-kong-admin-ts
A port of the Kong Admin API Client ([node-kong-admin]( https://github.com/wesleymilan/node-kong-admin)) project
for NodeJS/Typescript.
## Install
```console
$ npm install @coderade/node-kong-admin-ts --save-dev
```
## Usage
#### CommonJS
```js
const KongAdminAPI = require('@coderade/node-kong-admin-ts');
```
#### ES6
```js
import {KongAdminAPI} from '@coderade/node-kong-admin-ts';
```
## Documentation
To know more about the available endpoints take a look on Kong official Admin API
[documentation](https://docs.konghq.com/2.0.x/admin-api/).
#### Acknowledgements
All the credits to [wesleymilan](https://github.com/wesleymilan) for creating the original project