Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
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 2,242 weekly downloads. As such, simple-github popularity was classified as 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.