0.2.0 • Published 6 years ago

zenhub-api v0.2.0

Weekly downloads
765
License
ISC
Repository
github
Last release
6 years ago

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