Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
NodeJS wrapper for the GitHub API that uses browser XMLHttpRequest to make requests
A Node.js wrapper for GitHub API.
Install via npm
$ npm install github4
or
Install via git clone
$ git clone git@github.com:kaizensoze/node-github.git
$ cd node-github
$ npm install
Client API: https://kaizensoze.github.io/node-github/
GitHub API: https://developer.github.com/v3/
Create test auth file for running tests/examples.
$ > test_auth.json
{
"token": "<TOKEN>"
}
Get all followers for user "defunkt":
var GitHubApi = require("github4");
var github = new GitHubApi({
// optional
debug: true,
protocol: "https",
host: "github.my-GHE-enabled-company.com", // should be api.github.com for GitHub
pathPrefix: "/api/v3", // for some GHEs; none for GitHub
timeout: 5000,
headers: {
"user-agent": "My-Cool-GitHub-App" // GitHub is happy with a unique user agent
}
});
github.users.getFollowingForUser({
// optional:
// headers: {
// "cookie": "blahblah"
// },
user: "defunkt"
}, function(err, res) {
console.log(JSON.stringify(res));
});
Most GitHub API calls don't require authentication. As a rule of thumb: If you can see the information by visiting the site without being logged in, you don't have to be authenticated to retrieve the same information through the API. Of course calls, which change data or read sensitive information have to be authenticated.
You need the GitHub user name and the API key for authentication. The API key can be found in the user's Account Settings.
// basic
github.authenticate({
type: "basic",
username: USERNAME,
password: PASSWORD
});
// OAuth2
github.authenticate({
type: "oauth",
token: AUTH_TOKEN
});
// OAuth2 Key/Secret
github.authenticate({
type: "oauth",
key: CLIENT_ID,
secret: CLIENT_SECRET
})
Note: authenticate
is synchronous because it only stores the
credentials for the next request.
Once authenticated you can update a user field like so:
github.users.update({
location: "Argentina"
}, function(err) {
console.log("done!");
});
Create a new authorization for your application giving it access to the wanted scopes you need instead of relying on username / password and is the way to go if you have two-factor authentication on.
For example:
X-GitHub-OTP
header with the one-time-password you get on your token device.github.authorization.create({
scopes: ["user", "public_repo", "repo", "repo:status", "gist"],
note: "what this auth is for",
note_url: "http://url-to-this-auth-app",
headers: {
"X-GitHub-OTP": "two-factor-code"
}
}, function(err, res) {
if (res.token) {
//save and use res.token as in the Oauth process above from now on
}
});
$ node dist/generate.js
Dev note for updating apidoc for github pages:
$ npm install apidoc -g
$ apidoc -i doc/ -o apidoc/
Run all tests
$ npm test
Or run a specific test
$ npm test test/issuesTest.js
MIT license. See the LICENSE file for details.
FAQs
NodeJS wrapper for the GitHub API that uses browser XMLHttpRequest to make requests
The npm package github-xhr receives a total of 1 weekly downloads. As such, github-xhr popularity was classified as not popular.
We found that github-xhr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.