0.0.4 • Published 8 years ago

backlogger v0.0.4

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

backlogger

Backlog API in Node.js

Installation

Installing via NPM command:

npm install backlogger

Usage

var Backlogger = require('backlogger');

// Initializing with your domain and api key
var backlogger = Backlogger('yourDomain', 'yourApiKey');

// Using all of APIs supported right now
backlogger.getUserList().then(function(users) {
    console.log(users);
});

// Using API with URL parameters (please read Backlog official API documentation)
// Documentation: http://developer.nulab-inc.com/docs/backlog/api/2/get-project
// Example: /api/v2/projects/:projectIdOrKey
// projectIdOrKey is the URL parameter supported by API
backlogger
	.getProject({
		projectIdOrKey: 123
	})
	.then(function(project) {
		console.log(project);
	});

Supported APIs

  • getIssuesList
  • addIssue
  • getUserList
  • getProjectList
  • getProject
  • getCategoryList
  • addCategory
  • getIssueTypeList
  • getPriorityList

License

Licensed under the MIT License

Authors

Copyright(c) 2016 Fred Chien <cfsghost@gmail.com>

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago