Skip to content

Webini/zenhub-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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