Coder Social home page Coder Social logo

machour / node-github Goto Github PK

View Code? Open in Web Editor NEW

This project forked from octokit/octokit.js

0.0 1.0 0.0 3.29 MB

node library to access the GitHub API

Home Page: http://mikedeboer.github.com/node-github/

License: MIT License

JavaScript 97.63% Smarty 2.37%

node-github's Introduction

Node-github

npm Gratipay donate button

A Node.js wrapper for GitHub API.

Installation

Install via npm.

$ npm install github

or

Install via git clone

$ git clone https://github.com/mikedeboer/node-github.git
$ cd node-github
$ npm install

Documentation

Client API: https://mikedeboer.github.io/node-github/ GitHub API: https://developer.github.com/v3/

Example

Get all followers for user "defunkt":

var GitHubApi = require("github");

var github = new GitHubApi({
    // optional
    debug: true,
    Promise: require('bluebird'),
    timeout: 5000,
    host: "github.my-GHE-enabled-company.com", // should be api.github.com for GitHub
    pathPrefix: "/api/v3", // for some GHEs; none for GitHub
    protocol: "https",
    port: 9898,
    proxy: "<proxyUrl>",
    ca: "whatever",
    headers: {
        "accept": "application/vnd.github.something-custom",
        "cookie": "something custom",
        "user-agent": "something custom"
    },
    requestMedia: "application/vnd.github.something-custom",
    followRedirects: false, // default: true; there's currently an issue with non-get redirects, so allow disabling follow-redirects
    rejectUnauthorized: false, // default: true
    family: 6
});

// TODO: optional authentication here depending on desired endpoints. See below in README.

github.users.getFollowingForUser({
    // optional
    // headers: {
    //     "cookie": "blahblah"
    // },
    username: "defunkt"
}, function(err, res) {
    console.log(JSON.stringify(res));
});

Pagination

There are a few pagination-related methods:

hasNextPage(link)
hasPreviousPage(link)
hasFirstPage(link)
hasLastPage(link)

getNextPage(link, headers, callback)
getPreviousPage(link, headers, callback)
getFirstPage(link, headers, callback)
getLastPage(link, headers, callback)

NOTE: link is the response object or the contents of the Link header

See here and here for examples.

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.

// basic
github.authenticate({
    type: "basic",
    username: USERNAME,
    password: PASSWORD
});

// oauth
github.authenticate({
    type: "oauth",
    token: AUTH_TOKEN
});

// oauth key/secret (to get a token)
github.authenticate({
    type: "oauth",
    key: CLIENT_ID,
    secret: CLIENT_SECRET
})

// user token
github.authenticate({
    type: "token",
    token: "userToken",
});

// integration (jwt)
github.authenticate({
    type: "integration",
    token: "jwt",
});

// ~/.netrc
github.authenticate({
    type: "netrc"
});

Note: authenticate is synchronous because it only stores the credentials for the next request.

Creating a token for your application

Create a new authorization.

  1. Use github.authenticate() to authenticate with GitHub using your username / password.
  2. 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) {
        //save and use res.token as in the Oauth process above from now on
    }
});

Create test auth file

Create test auth file for running tests/examples.

$ > testAuth.json
{
    "token": "<TOKEN>"
}

Promises

For using bluebird, see here. For using Q, see here.

Tests

Run all tests

$ npm test

Or run a specific test

$ npm test test/issuesTest.js

Preview APIs

Accept headers for the preview APIs should be taken care of behind the scenes, but in the event a preview endpoint isn't working, see here for an example on how to add the required custom accept header.

For updates on endpoints under preview, see https://developer.github.com/changes/.

Preview API Accept header val
Blocking Users application/vnd.github.giant-sentry-fist-preview+json
Codes of Conduct application/vnd.github.scarlet-witch-preview+json
Commit Search application/vnd.github.cloak-preview+json
Community application/vnd.github.black-panther-preview+json
Deployment application/vnd.github.ant-man-preview+json
Git signing application/vnd.github.cryptographer-preview
Imports application/vnd.github.barred-rock-preview
Integrations application/vnd.github.machine-man-preview
License application/vnd.github.drax-preview+json
Marketplace application/vnd.github.valkyrie-preview+json
Migrations application/vnd.github.wyandotte-preview+json
Nested Teams application/vnd.github.hellcat-preview+json
Pages application/vnd.github.mister-fantastic-preview
Pre-receive application/vnd.github.eye-scream-preview
Projects application/vnd.github.inertia-preview+json
Pull Request Squash application/vnd.github.polaris-preview
Reactions application/vnd.github.squirrel-girl-preview
Review Requests application/vnd.github.thor-preview+json
Star Creation Timestamp application/vnd.github.v3.star+json
Timeline application/vnd.github.mockingbird-preview
Topics application/vnd.github.mercy-preview+json

Dev notes

When updating routes.json, you'll want to update the generated docs/tests:

$ node lib/generate.js

To update the apidoc for github pages:

$ npm install apidoc -g
$ apidoc -i doc/ -o apidoc/

Just a reminder, since an ad-hoc filter was added to the apidoc, don't overwrite index.html, main.js.

LICENSE

MIT license. See the LICENSE file for details.

node-github's People

Contributors

adamlofting avatar almad avatar basteln3rk avatar bkeepers avatar boblauer avatar brunocoelho avatar dominique-mueller avatar ekristen avatar finnp avatar fjakobs avatar furf avatar gr2m avatar greggman avatar henvic avatar jcreamer898 avatar jkresner avatar kaizensoze avatar kuba-kubula avatar mattpardee avatar maxmechanic avatar mikedeboer avatar nojhamster avatar rmg avatar robert-nelson avatar roonyh avatar stagas avatar stefanjudis avatar williamkapke avatar zaubernerd avatar zeke avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.