0.0.4 • Published 3 years ago

backlog4js v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

Backlog4js

Backlog API version 2 client.

Installation

npm install backlog4js

Getting started

const HOST = "xxxx.backlog.com";
const API_KEY = "===YOUR-API-KEY===";
const Backlog = require("backlog4js");

var backlog = new Backlog(HOST, API_KEY);

(async function () {
  var data;
  try {
    data = await backlog.getProjectList();
    console.log(data);
  } catch (err) {
    console.error(err);
  }
})();

References

(*) See also official api references

License

MIT License

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago