This fork has been merged into the upstream (mikedeboer/node-github). Use that instead.
Node-github
A Node.js wrapper for GitHub API.
Installation
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
Documentation
Client API: https://kaizensoze.github.io/node-github/
GitHub API: https://developer.github.com/v3/
Test auth file
Create test auth file for running tests/examples.
$ > testAuth.json
{
"token": "<TOKEN>"
}
Example
Get all followers for user "defunkt":
var GitHubApi = require("github4");
var github = new GitHubApi({
debug: true,
protocol: "https",
host: "github.my-GHE-enabled-company.com",
pathPrefix: "/api/v3",
timeout: 5000,
headers: {
"user-agent": "My-Cool-GitHub-App"
}
});
github.users.getFollowingForUser({
user: "defunkt"
}, function(err, res) {
console.log(JSON.stringify(res));
});
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.
github.authenticate({
type: "basic",
username: USERNAME,
password: PASSWORD
});
github.authenticate({
type: "oauth",
token: AUTH_TOKEN
});
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!");
});
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) {
}
});
Update docs/tests
$ node lib/generate.js
Dev note for updating apidoc for github pages:
$ npm install apidoc -g
$ apidoc -i doc/ -o apidoc/
Tests
Run all tests
$ npm test
Or run a specific test
$ npm test test/issuesTest.js
LICENSE
MIT license. See the LICENSE file for details.