0.0.9 • Published 9 years ago

node-github-client v0.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

node-github-client

NPM version Build Status

github api for node.js

Features

  • authenticate via oauth token
  • get pull requests (all pages!)
  • get comments (all pages!)

Getting Started

npm install node-github-client

example:

var GithubClient = require('node-github-client');
var client = new GithubClient();

client.authenticate('<github-username>', '<githu-personal-token>');

client.getPullRequests('organization/repo-name', function(err, listOfPulls) {
    if (err) {
        console.error(err);
        return;
    }
    console.log(JSON.stringify(listOfPulls));
});
0.0.9

9 years ago

0.0.8

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago