
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.
simple-github
Advanced tools
A simple, request-inspired and promise-based wrapper around GitHub's API.
A simple, request-inspired and promise-based wrapper around GitHub's API.
The idea here is to simplify interacting with the GH API for basic scenarios. It uses Q promises (as promises are such a nicer abstraction then callbacks). It doesn't support streaming at present mostly because I didn't really need streaming for my use cases, and also because I'm still trying to figure out what the best practice is for handling streams in node.js (especially when these contain JSON data you want to parse).
The data set I'm working with and my use cases makes it so that it perfectly reasonable to send multiple gets and lump together the output of paginated data when fulfilling the promise. This might turn out to be a bad idea but I don't know better for now.
Because what I want to do is use the API as quickly as possible, this module supports copy pasting the URLs directly from the documentation:
var gh = require("simple-github")({
owner: "tobie",
repo: "simple-github"
});
gh.request("GET /repos/:owner/:repo/pulls/:number", { number: 349 }).then(console.log);
Interpolation is automatic.
Similarly, simple-github also accepts URI templates (as these are common in the GitHub API):
var gh = require("simple-github")({
owner: "tobie",
repo: "simple-github"
});
gh.request("https://api.github.com/repos/{owner}/{repo}/commits", { method: "get" }).then(console.log);
FAQs
A simple, request-inspired and promise-based wrapper around GitHub's API.
The npm package simple-github receives a total of 240 weekly downloads. As such, simple-github popularity was classified as not popular.
We found that simple-github 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.