@keboola/manage-api-js-client
v1.0.1
Published
Javascript client for Keboola Management API
Downloads
3
Keywords
Readme
Javascript client for Keboola Management API
Javascript client for Keboola Connection Management API.
Installation
- Install npm package:
yarn add @keboola/manage-api-js-client
Usage
You can use ES6 imports (import ManageApi from '@keboola/manage-api-js-client';
) or require (const ManageApi = require('@keboola/manage-api-js-client').default;
).
const ManageApi = require('@keboola/manage-api-js-client').default;
const manageApi = new ManageApi('https://connection.keboola.com', 'TOKEN');
Tests and development
You need to set some env variables for the tests:
KBC_URL
KBC_TOKEN
- a master token Tests can be run usingyarn test
.
The repository requires conforming to a set of coding standards based on AirBnB code standard. You can run the check using yarn lint
.
Deployment
Deployment to NPM compiles the code from src
directory to dist
directory.