New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

backlogger

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backlogger

Backlog API in Node.js

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

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>

Keywords

FAQs

Package last updated on 25 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc