Socket
Socket
Sign inDemoInstall

github-api

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github-api

A higher-level wrapper around the Github API.


Version published
Maintainers
3
Created
Source

Github.js

GitterStories in ReadyBuild Statuscodecov.io

Github.js provides a minimal higher-level wrapper around git's plumbing commands, exposing an API for manipulating GitHub repositories on the file level. It was formerly developed in the context of Prose, a content editor for GitHub.

Installation

Either grab github.js from this repo or install Github.js via npm:

npm install github-api

Alternatively, you can install the library using Bower:

bower install github-api

Usage

Create a Github instance.

var github = new Github({
  username: "YOU_USER",
  password: "YOUR_PASSWORD",
  auth: "basic"
});

Or if you prefer OAuth, it looks like this:

var github = new Github({
  token: "OAUTH_TOKEN",
  auth: "oauth"
});

You can use either:

  • Authorised App Tokens (via client/secret pairs), used for bigger applications, created in web-flows/on the fly
  • Personal Access Tokens (simpler to set up), used on command lines, scripts etc, created in GitHub web UI

See these pages for more info:

Creating an access token for command-line use

[Github API OAuth Overview] (http://developer.github.com/v3/oauth)

Enterprise Github instances may be specified using the apiUrl option:

var github = new Github({
  apiUrl: "https://serverName/api/v3",
  ...
});

Repository API

var repo = github.getRepo(username, reponame);

Show repository information

repo.show(function(err, repo) {});

Delete a repository

repo.deleteRepo(function(err, res) {});

Get contents at a particular path in a particular branch.

repo.contents(branch, "path/to/dir", function(err, contents) {});

Fork repository. This operation runs asynchronously. You may want to poll for repo.contents until the forked repo is ready.

repo.fork(function(err) {});

Create new branch for repo. You can omit oldBranchName to default to "master".

repo.branch(oldBranchName, newBranchName, function(err) {});

List Pull Requests.

var state = 'open'; //or 'closed', or 'all'
repo.listPulls(state, function(err, pullRequests) {});

Get details of a Pull Request.

var pullRequestID = 123;
repo.getPull(pullRequestID, function(err, pullRequestInfo) {});

Create Pull Request.

var pull = {
  title: message,
  body: "This pull request has been automatically generated by Prose.io.",
  base: "gh-pages",
  head: "michael" + ":" + "prose-patch"
};
repo.createPullRequest(pull, function(err, pullRequest) {});

Retrieve all available branches (aka heads) of a repository.

repo.listBranches(function(err, branches) {});

Store contents at a certain path, where files that don't yet exist are created on the fly. You can also provide an optional object literal, (options in the example below) containing information about the author and the committer.

var options = {
  author: {name: 'Author Name', email: 'author@example.com'},
  committer: {name: 'Committer Name', email: 'committer@example.com'},
  encode: true // Whether to base64 encode the file. (default: true)
}
repo.write('master', 'path/to/file', 'YOUR_NEW_CONTENTS', 'YOUR_COMMIT_MESSAGE', options, function(err) {});

Not only can you can write files, you can of course read them.

repo.read('master', 'path/to/file', function(err, data) {});

Move a file from A to B.

repo.move('master', 'path/to/file', 'path/to/new_file', function(err) {});

Remove a file.

repo.remove('master', 'path/to/file', function(err) {});

Get information about a particular commit.

repo.getCommit('master', sha, function(err, commit) {});

Exploring files of a repository is easy too by accessing the top level tree object.

repo.getTree('master', function(err, tree) {});

If you want to access all blobs and trees recursively, you can add ?recursive=true.

repo.getTree('master?recursive=true', function(err, tree) {});

Given a filepath, retrieve the reference blob or tree sha.

repo.getSha('master', '/path/to/file', function(err, sha) {});

For a given reference, get the corresponding commit sha.

repo.getRef('heads/master', function(err, sha) {});

Create a new reference.

var refSpec = {
  "ref": "refs/heads/my-new-branch-name",
  "sha": "827efc6d56897b048c772eb4087f854f46256132"
};
repo.createRef(refSpec, function(err) {});

Delete a reference.

repo.deleteRef('heads/gh-pages', function(err) {});

Get contributors list with additions, deletions, and commit counts.

repo.contributors(function(err, data) {});

User API

var user = github.getUser();

List repositories of the authenticated user, including private repositories and repositories in which the user is a collaborator and not an owner.

user.repos(options, function(err, repos) {});

List organizations the autenticated user belongs to.

user.orgs(function(err, orgs) {});

List authenticated user's gists.

user.gists(function(err, gists) {});

List unread notifications for the authenticated user.

user.notifications(options, function(err, notifications) {});

Show user information for a particular username. Also works for organizations. Pass in a falsy value (null, '', etc) for 'username' to retrieve user information for the currently authorized user.

user.show(username, function(err, user) {});

List public repositories for a particular user.

user.userRepos(username, function(err, repos) {});

List starred repositories for a particular user.

user.userStarred(username, function(err, repos) {});

Create a new repo for the authenticated user

user.createRepo({"name": "test"}, function(err, res) {});

Repo description, homepage, private/public can also be set. For a full list of options see the docs here

List repositories for a particular organization. Includes private repositories if you are authorized.

user.orgRepos(orgname, function(err, repos) {});

List all gists of a particular user. If username is ommitted gists of the current authenticated user are returned.

user.userGists(username, function(err, gists) {});

Gist API

var gist = github.getGist(3165654);

Read the contents of a Gist.

gist.read(function(err, gist) {

});

Updating the contents of a Gist. Please consult the documentation on GitHub.

var delta = {
  "description": "the description for this gist",
  "files": {
    "file1.txt": {
      "content": "updated file contents"
    },
    "old_name.txt": {
      "filename": "new_name.txt",
      "content": "modified contents"
    },
    "new_file.txt": {
      "content": "a new file"
    },
    "delete_this_file.txt": null
  }
};

gist.update(delta, function(err, gist) {

});

Issues API

var issues = github.getIssues(username, reponame);

To read all the issues of a given repository

issues.list(options, function(err, issues) {});

To comment in a issue

issues.comment(issue, comment,function(err, comment) {});

Search API

var search = github.getSearch(query);

Search repositories

Suppose you want to search for popular Tetris repositories written in Assembly. Your query might look like this:

var search = github.getSearch("tetris+language:assembly&sort=stars&order=desc");
search.repositories(options, function (err, repositories) {});

Search code

Suppose you want to find the definition of the addClass function inside jQuery. Your query would look something like this:

var search = github.getSearch("addClass+in:file+language:js+repo:jquery/jquery");
search.code(options, function (err, codes) {});

Search issues

Let’s say you want to find the oldest unresolved Python bugs on Windows. Your query might look something like this:

var search = github.getSearch("windows+label:bug+language:python+state:open&sort=created&order=asc");
search.issues(options, function (err, issues) {});

Search users

Imagine you’re looking for a list of popular users. You might try out this query:

var search = github.getSearch("tom+repos:%3E42+followers:%3E1000");
search.users(options, function (err, users) {});

Here, we’re looking at users with the name Tom. We’re only interested in those with more than 42 repositories, and only if they have over 1,000 followers.

Change Log

0.10.X

Create and delete repositories Repos - getCommit

0.9.X

Paging (introduced at tail end of 0.8.X, note: different callbacks for success & errors now)

0.8.X

Fixes and tweaks, simpler auth, CI tests, node.js support, Raw+JSON, UTF8, plus: Users - follow, unfollow, get info, notifications Gists - create Issues - get Repos - createRepo, deleteRepo, createBranch, star, unstar, isStarred, getCommits, listTags, listPulls, getPull, compare Hooks - listHooks, getHook, createHook, editHook, deleteHook

0.7.X

Switched to a native request implementation (thanks @mattpass). Adds support for GitHub gists, forks and pull requests.

0.6.X

Adds support for organizations and fixes an encoding issue.

0.5.X

Smart caching of latest commit sha.

0.4.X

Added support for OAuth.

0.3.X

Support for Moving and removing files.

0.2.X

Consider commit messages.

0.1.X

Initial version.

Keywords

FAQs

Package last updated on 13 Nov 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc