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

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

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