UNPKG

github-users

Version:

node.js module to access any Github user's data by Github API.

11 lines (9 loc) 273 B
var githubUsers = require('./index'); githubUsers.getData("ol-web", function(error, data){ if(error) throw error; console.log(data); }); githubUsers.getRepos("ol-web", function(error, repos){ if(error) throw error; console.log(repos.length); });