Skip to content

biebg/node-kf5-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-kf5-api


forked from holyrain/node-kf5-api

KF5 API client

Install

npm install yo-kf5

Example

var kf5 = require('yo-kf5');
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.

About

KF5 API client with node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%