Node-github
A Node.js wrapper for GitHub API.
Installation
Install with the Node.JS package manager npm :
$ npm install github4
or
Install via git clone:
$ git clone git@github.com:kaizensoze/node-github.git
$ cd node-github
$ npm install
Documentation
Client API: https://kaizensoze.github.io/node-github/
GitHub API: https://developer.github.com/v3/
Example
Print all followers of the user "kaizensoze" to the console.
var GitHubApi = require("github4");
var github = new GitHubApi({
version: "3.0.0",
debug: true,
protocol: "https",
host: "github.my-GHE-enabled-company.com",
pathPrefix: "/api/v3",
timeout: 5000,
headers: {
"user-agent": "My-Cool-GitHub-App"
}
});
github.user.getFollowingFromUser({
user: "kaizensoze"
}, function(err, res) {
console.log(JSON.stringify(res));
});
First the GitHubApi class is imported from the node-github module. This class provides
access to all of GitHub's APIs (e.g. user, issues or repo APIs). The getFollowingFromUser
method lists all followers of a given GitHub user. Is is part of the user API. It
takes the user name as first argument and a callback as last argument. Once the
follower list is returned from the server, the callback is called.
Like in Node.JS, callbacks are always the last argument. If the functions fails an
error object is passed as first argument to the callback.
Authentication
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 page.
This example shows how to authenticate and then change location field of the
account settings to Argentina:
github.authenticate({
type: "basic",
username: username,
password: password
});
github.user.update({
location: "Argentina"
}, function(err) {
console.log("done!");
});
Note that the authenticate method is synchronous because it only stores the
credentials for the next request.
Other examples for the various authentication methods:
github.authenticate({
type: "oauth",
token: token
});
github.authenticate({
type: "oauth",
key: "clientID",
secret: "clientSecret"
})
github.authenticate({
type: "token",
token: token
});
Creating tokens for your application
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:
- Use github.authenticate() to auth with GitHub using your username / password
- Create an application token programmatically with the scopes you need and, if you use two-factor authentication send the
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) {
}
});
Implemented GitHub APIs
- Gists: 100%
- Git Data: 100%
- Issues: 100%
- Orgs: 100%
- Pull Requests: 100%
- Repos: 100%
- Users: 100%
- Events: 100%
- Search: 100%
- Markdown: 100%
- Rate Limit: 100%
- Releases: 100%
- Gitignore: 100%
- Meta: 100%
- Emojis: 100%
Running the Tests
The unit tests are based on the mocha
module, which may be installed via npm. To run the tests make sure that the
npm dependencies are installed by running npm install
from the project directory.
Before running unit tests:
npm install mocha -g
At the moment, test classes can only be run separately. This will e.g. run the Issues Api test:
mocha api/v3.0.0/issuesTest.js
Note that a connection to the internet is required to run the tests.
LICENSE
MIT license. See the LICENSE file for details.