Socket
Socket
Sign inDemoInstall

github

Package Overview
Dependencies
11
Maintainers
5
Versions
101
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    github

GitHub REST API client for Node.js


Version published
Weekly downloads
37K
decreased by-15.39%
Maintainers
5
Created
Weekly downloads
 

Readme

Source

node-github

GitHub REST API client for Node.js

Build Status Coverage Status Greenkeeper npm

Installation

Install via npm.

npm install github

or install via git clone:

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

Documentation

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

Example

Get all followers for user "defunkt":

var GitHubApi = require('github')

var github = new GitHubApi({
    // optional
  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',
  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) {
  if (err) throw err
  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: process.env.USERNAME,
  password: process.env.PASSWORD
})

// oauth
github.authenticate({
  type: 'oauth',
  token: process.env.AUTH_TOKEN
})

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

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

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

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 (err) throw err
  if (res.token) {
    // save and use res.token as in the Oauth process above from now on
  }
})

DEBUG

Set DEBUG=node-github* for additional debug logs.

Tests

Run all tests

$ npm test

Or run a specific test

$ ./node_modules/.bin/mocha test/test/integration/get-repository-test.js

The examples are run as part of the tests. You can set an EXAMPLES_GITHUB_TOKEN environment variable (or set it in a .env file) to avoid running against GitHub's rate limit.

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 APIAccept header val
Blocking Usersapplication/vnd.github.giant-sentry-fist-preview+json
Codes of Conductapplication/vnd.github.scarlet-witch-preview+json
Commit Searchapplication/vnd.github.cloak-preview+json
Communityapplication/vnd.github.black-panther-preview+json
Deploymentapplication/vnd.github.ant-man-preview+json
Git signingapplication/vnd.github.cryptographer-preview
Importsapplication/vnd.github.barred-rock-preview
Integrationsapplication/vnd.github.machine-man-preview
Licenseapplication/vnd.github.drax-preview+json
Marketplaceapplication/vnd.github.valkyrie-preview+json
Migrationsapplication/vnd.github.wyandotte-preview+json
Nested Teamsapplication/vnd.github.hellcat-preview+json
Pagesapplication/vnd.github.mister-fantastic-preview
Pre-receiveapplication/vnd.github.eye-scream-preview
Projectsapplication/vnd.github.inertia-preview+json
Pull Request Squashapplication/vnd.github.polaris-preview
Reactionsapplication/vnd.github.squirrel-girl-preview
Review Requestsapplication/vnd.github.thor-preview+json
Star Creation Timestampapplication/vnd.github.v3.star+json
Timelineapplication/vnd.github.mockingbird-preview
Topicsapplication/vnd.github.mercy-preview+json

LICENSE

MIT

FAQs

Last updated on 15 Jan 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc