
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
backlog-api
Advanced tools
Backlog API wrapper for Node.js
$ npm install backlog-api
var backlogApi = require('backlog-api');
var backlog = backlogApi('space', 'user', 'pass');
backlog.findIssue({
projectId: 1,
statusId: [1, 2, 3],
}, function(err, issues) {
console.log(issues);
});
// show 'BAPI' project, 'bouzuya' user, 'imcomplete' issues.
var backlogApi = require('backlog-api');
// set env
// process.env.BACKLOG_SPACE_ID
// process.env.BACKLOG_USERNAME
// process.env.BACKLOG_PASSWORD
var backlog = backlogApi();
// get project id
backlog.getProjects(function(err, projects) {
if (err) throw err;
var projectId = projects.filter(function(p) {
return p.key === 'BAPI';
})[0].id;
// get user id
backlog.getUsers({
projectId: projectId
}, function(err, users) {
if (err) throw err;
var userId = users.filter(function(u) {
return u.name === 'bouzuya'
})[0].id;
// get issues
backlog.findIssue({
projectId: projectId,
assignerId: userId,
statusId: [1, 2, 3]
}, function(err, issues) {
console.log(issues);
});
});
});
FAQs
Backlog API wrapper for Node.js
The npm package backlog-api receives a total of 5 weekly downloads. As such, backlog-api popularity was classified as not popular.
We found that backlog-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.