Created
March 9, 2023 22:49
-
-
Save hendrixroa/51aa6fc207ae245c523f620a6e312282 to your computer and use it in GitHub Desktop.
Get all repos of github trending
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 allReposArticles = document.querySelectorAll( | |
| '.Box-row h1.lh-condensed a', | |
| ); | |
| const allReposArray = Array.from(allReposArticles); | |
| const allNamesRepos = allReposArray.map((item: HTMLElement | any) => { | |
| return { name: item.innerText }; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment