0.0.3 • Published 7 years ago

kanboard v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Javascript API Client for Kanboard

Build Status

Kanboard is a Kanban project management software.

  • Author: Frédéric Guillot
  • License: MIT

Requirements

  • Tested with nodejs >= v7.3.x

Installation

npm install kanboard

Examples

Methods and arguments are the same as the API procedures described in the official documentation.

const Kanboard = require('kanboard');

var kb = new Kanboard('http://localhost/jsonrpc.php', 'username', 'password');

kb.execute('getMyProjects')
.on('success', (result) => {
    console.log(result);
})
.on('error', (error) => {
    console.log(error);
});