Get all github repositories by username
$ npm install all-repos --save
const allRepos = require('all-repos');
allRepos('banminkyoz').then(repos => {
console.log(repos);
}).catch(error => {
console.log(error);
});
/* Results:
[
{
name: 'neovim',
fullName: 'banminkyoz/neovim',
description: 'My neovim config XD',
stars: '1',
forks: 0,
forkFrom: '',
lastUpdated: '3 weeks ago',
url: 'https://github.com/banminkyoz/neovim'
},
...
]
*/
- all-repos-cli - CLI for this module
MIT © Kyoz