kf5-api

0.0.1 • Public • Published

node-kf5-api


KF5 API client

Install

npm install kf5-api

Example

var kf5 = require('kf5-api');
var kf5client = kf5.client({
    username:  'username',
    token:     'token',
    host: 'https://subdomain.kf5.com/apiv2'
});
 
kf5client.requests.list(function (err, req, result) {
  if (err) {
    console.log(err);
    return;
  }
  console.log(result);
});

Take a look in the examples folder for more examples.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i kf5-api

    Weekly Downloads

    1

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • holyrain