npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

github-all-repos

0.1.0

@phated

npmRepoSnykSocket
Downloads:56
$ npm install github-all-repos
DailyWeeklyMonthlyYearly

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
  });