Created
December 15, 2019 18:24
-
-
Save plibither8/7fe52e3d7b332c36f6630f1c41625c49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const url = 'https://api.github.com/users/plibither8/repos?per_page=100'; | |
copy( | |
[ | |
...await fetch(url).then(res => res.json()) | |
] | |
.filter(r => !r.fork) | |
.map(r => | |
`* [${r.name}](${r.html_url}) - ${r.archived ? '_Archived_ -' : ''} ${r.description}` | |
) | |
.join('\n') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment