find-github-repo
v1.0.1
Published
Get a list of Github repositories of specified username sorted by numbers of stars in descending order and last updated time
Downloads
2
Maintainers
Readme
find-github-repo
Get a list of Github repositories of specified username sorted by numbers of stars in descending order and last updated time
Installation
# using npm
npm install find-github-repo
# using yarn
yarn add find-github-repo
Usage
# using require
const { callGetRepoFun } = require('find-github-repo');
# using import
import { callGetRepoFun } from 'find-github-repo';
Example
Using promises:
// username = github username
// page = page which you want to see like 1,2,3,4...
// per_page = number of item on each page
callGetRepoFun(username, page, per_page).then(res => {
console.log({my_Res: res})
})