0.1.0 • Published 10 years ago

github-all-repos v0.1.0

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

Build Status

github-all-repos

Because fetching all repos for a Github user is a pain

Usage

With a nodeback

var getAllRepos = require('github-all-repos');

getAllRepos(GITHUB_ACCESS_TOKEN, function(err, repos){
  // check for and handle error

  // do something with repos
});

As a promise

var getAllRepos = require('github-all-repos');

getAllRepos(GITHUB_ACCESS_TOKEN)
  .then(function(repos){
    // do something with repos
  }, function(err){
    // handle error
  });