zenhub-api

Wrapper for zenhub api

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
zenhub-api
0.2.05 years ago7 years agoMinified + gzip package size for zenhub-api in KB

Readme

Node.js ZenHub Api

Usage

const ZenHub = require('zenhub-api');

const api = new ZenHub(apiKey);
api
  .getBoard({ repo_id: 01234 })
  .then((data) => {
    console.log('Yheaa some data', data);
  })
  .catch((e) => {
    console.log('Nooo :( errors everywhere', e);
  })
;
You can find more samples in the test directory.

Official documentation

Can be found here

Available methods