UNPKG
zubaer-githubapi
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Get a list of repository of a github user
zubaer-githubapi
/
test.js
9 lines
(7 loc)
•
285 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
github =
require
(
"./githubapi"
); github.
getRepos
(
'zubaer-ahammed'
,
function
(
repos
) {
console
.
log
(
"Zubaer has "
+ repos.
length
+
" repos in Github!"
); }); github.
getRepos
(
'hasinhayder'
,
function
(
repos
) {
console
.
log
(
"Hasin Hayder "
+ repos.
length
+
" repos in Github!"
); });