Skip to content

Instantly share code, notes, and snippets.

@hendrixroa
Created March 9, 2023 22:49
Show Gist options
  • Save hendrixroa/51aa6fc207ae245c523f620a6e312282 to your computer and use it in GitHub Desktop.
Save hendrixroa/51aa6fc207ae245c523f620a6e312282 to your computer and use it in GitHub Desktop.
Get all repos of github trending
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