{"id":13587008,"url":"https://github.com/samdenty/github-icons","last_synced_at":"2025-10-06T09:57:41.864Z","repository":{"id":56005495,"uuid":"477424662","full_name":"samdenty/github-icons","owner":"samdenty","description":"API, Chrome Extension \u0026 Mac App/CLI that adds icons to your repos","archived":false,"fork":false,"pushed_at":"2023-07-05T18:02:41.000Z","size":40830,"stargazers_count":245,"open_issues_count":4,"forks_count":7,"subscribers_count":17,"default_branch":"main","last_synced_at":"2025-09-28T04:42:05.801Z","etag":null,"topics":["chrome-extension","cli","extension","github","icons","macos","rust","sync"],"latest_commit_sha":null,"homepage":"https://github-icons.com","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/samdenty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-03T18:07:01.000Z","updated_at":"2025-09-25T05:17:02.000Z","dependencies_parsed_at":"2024-05-29T16:25:35.528Z","dependency_job_id":null,"html_url":"https://github.com/samdenty/github-icons","commit_stats":{"total_commits":403,"total_committers":2,"mean_commits":201.5,"dds":0.00496277915632759,"last_synced_commit":"5ef90d800fc90ab79658ecd3d6a9841d16312e6c"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/samdenty/github-icons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdenty%2Fgithub-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdenty%2Fgithub-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdenty%2Fgithub-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdenty%2Fgithub-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samdenty","download_url":"https://codeload.github.com/samdenty/github-icons/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samdenty%2Fgithub-icons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278591264,"owners_count":26012028,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chrome-extension","cli","extension","github","icons","macos","rust","sync"],"created_at":"2024-08-01T15:05:57.713Z","updated_at":"2025-10-06T09:57:41.826Z","avatar_url":"https://github.com/samdenty.png","language":"Rust","readme":"\u003ch1 align=\"center\"\u003e\n  \u003cimg src=\"./cli/logo.png\" width=\"150\"\u003e\n\u003c/h1\u003e\n\n[![Open in Codeflow](https://developer.stackblitz.com/img/open_in_codeflow.svg)](https://pr.new/samdenty/github-icons)\n\n[![Website demo](assets/api-demo.gif)](https://github-icons.com)\n\n## API Usage\n\nTo use the API, generate a token by signing into the website first (click the search bar). A token is required we use the GitHub API, and that is rate limited.\n\nConsider [sponsoring the project](https://github.com/sponsors/samdenty) as it costs to run the API.\n\n```bash\n# GitHub Repo icon API:\nGET https://github-icons.com/[user]/[repo]?token=[token]\n# NPM Package icon API:\nGET https://github-icons.com/npm/[package]?token=[token]\n\n# List all icons for a repo:\nGET https://github-icons.com/[user]/[repo]/all?token=[token]\n# List all icons for a package:\nGET https://github-icons.com/npm/[package]/all?token=[token]\n```\n\n## Mac APP\n\n### [Download the app](https://github.com/samdenty/github-icons/releases/latest)\n\nAutomatically adds project logos to your locally cloned GitHub repos. [Youtube Video](https://www.youtube.com/watch?v=jrO3qSEpAFU)\n\nThis repository contains the source code for the github-icons CLI. You can also [sponsor this project](https://github.com/sponsors/samdenty)\n\n## Repo structure\n\n| Folder                                  | Description                                          |\n| --------------------------------------- | ---------------------------------------------------- |\n| [`api`](/api)                           | Cloudflare worker for fetching repo icons            |\n| [`cli`](/cli)                           | CLI for adding repo icons to .git folders            |\n| [`chrome-extension`](/chrome-extension) | Chrome extension for adding repo icons to github.com |\n| [`vscode-extension`](/vscode-extension) | VSCode extension that adds NPM / GitHub icons        |\n| [`repo_icons`](/repo_icons)             | Rust crate for scraping repo icons                   |\n| [`website`](/website)                   | The www.github-icons.com website                     |\n\n## Running the CLI\n\nYou can run the CLI using the below commands.\n\n\u003c!-- brew install mysql-client\ncargo install diesel_cli --no-default-features --features mysql --\u003e\n\n```bash\n# To install rust\ncurl https://sh.rustup.rs -sSf | sh\n\n# Clone the repository\ngit clone https://github.com/samdenty/github-icons\ncd github-icons\n\ncargo run -- sync\n# or with github token (for private repos)\ncargo run -- sync --token INSERT_TOKEN\n```\n\n[![Banner](./banner.gif)](https://samddenty.gumroad.com/l/git-icons)\n","funding_links":["https://github.com/sponsors/samdenty"],"categories":["Rust"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamdenty%2Fgithub-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamdenty%2Fgithub-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamdenty%2Fgithub-icons/lists"}