Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.
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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.