Skip to content

dolphin278/github3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub3 - NodeJS GitHub API (v3) Wrapper

Installation

$ npm install github3

Example Code (Checkout /tests, same jazz)

var github3 = require('github3');

github3.getUser(user, function('edwardhotchkiss', user) {
  console.log(user);
});

github3.getUserRepos('edwardhotchkiss', function(error, repos) {
  console.log(repos);
});

github3.getUsersWatched('edwardhotchkiss', function(error, watched) {
  console.log(watched);
});

github3.getOrgMembers('ingklabs', function(error, members) {
  console.log('members');
});

/* EOF */

About

NodeJS GitHub API (v3) Wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%