{"id":31772046,"url":"https://github.com/aboutcode-org/popular-package-purls","last_synced_at":"2026-02-15T09:04:34.351Z","repository":{"id":293834145,"uuid":"985260332","full_name":"aboutcode-org/popular-package-purls","owner":"aboutcode-org","description":"List of popular open source packages keyed by Package-URL (PURL).","archived":false,"fork":false,"pushed_at":"2025-05-19T04:49:47.000Z","size":3641,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-21T22:33:14.094Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aboutcode-org.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"aboutcode-org","open_collective":"aboutcode","custom":"https://causes.benevity.org/causes/056-5528680976845_a486"}},"created_at":"2025-05-17T11:48:24.000Z","updated_at":"2025-06-11T12:34:44.000Z","dependencies_parsed_at":"2025-10-10T03:55:26.462Z","dependency_job_id":"5673f41e-22e3-44f0-be86-bd2ec8f2e656","html_url":"https://github.com/aboutcode-org/popular-package-purls","commit_stats":null,"previous_names":["aboutcode-org/popular-package-purls"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aboutcode-org/popular-package-purls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fpopular-package-purls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fpopular-package-purls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fpopular-package-purls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fpopular-package-purls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aboutcode-org","download_url":"https://codeload.github.com/aboutcode-org/popular-package-purls/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutcode-org%2Fpopular-package-purls/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29474426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-10-10T03:55:12.198Z","updated_at":"2026-02-15T09:04:34.317Z","avatar_url":"https://github.com/aboutcode-org.png","language":null,"readme":"=========================\nPopular packages PURLs\n=========================\n\nhttps://github.com/aboutcode-org/popular-package-purls is list of popular open source packages\nkeyed by Package-URL (PURL).\n\nThis is a dataset of popular packages Package-URLs collected from deps.dev using Google's BigQuery\nwhere the number of dependents is used as a measure of popularity.\n\nThis is done using this query derived from examples provided at https://docs.deps.dev/bigquery/v1/\nthat we ran once for each package type: npm, cargo, maven, golang, and pypi ::\n\n    DECLARE\n      Type STRING DEFAULT 'NPM';\n    \n    WITH\n      LatestVersions AS (\n        SELECT\n          System as type,\n          Name as name,\n          Version as version,\n        FROM (\n          SELECT\n            System as type,\n            Name as name,\n            Version as version,\n            ROW_NUMBER()\n              OVER (PARTITION BY\n                      System,\n                      Name\n                    ORDER BY\n                      VersionInfo.Ordinal DESC) AS RowNumber\n            FROM\n              `bigquery-public-data.deps_dev_v1.PackageVersionsLatest`\n            WHERE\n              System = Type\n              AND VersionInfo.IsRelease)\n        WHERE RowNumber = 1\n        )\n    \n    SELECT\n      D.System as type,\n      D.Dependency.Name as name,\n      D.Dependency.Version version,\n      COUNT(*) AS dependents_count\n    FROM\n      `bigquery-public-data.deps_dev_v1.DependenciesLatest` AS D\n    JOIN\n      LatestVersions AS LV\n    USING\n      (type, name, version)\n    WHERE\n      D.System = Type\n    GROUP BY\n      D.System,\n      D.Dependency.Name,\n      D.Dependency.Version\n    ORDER BY\n      dependents_count DESC\n    LIMIT\n      50000;\n\nThe output is then post-processed using this simple python script::\n\n    import json\n    import os\n    ecos = \"npm\"\n    purls = []\n    packs = json.load(open(f\"json/{ecos}.json\"))\n    for rec in packs:\n         t = rec[\"type\"]\n         n = rec[\"name\"]\n         v = rec[\"version\"]\n         d = rec[\"dependents_count\"]\n         purl = f\"pkg:{t}/{n}@{v}\"\n         r = dict(purl=purl, dependents_count=d)\n         purls.append(r)\n    \n    with open(\"purls.json\", \"w\") as o:\n        o.write(json.dumps(purls, indent=2))\n\n\nThanks to https://github.com/xeol-io/critical-packages that documented the approach and shared\na repositroy with pre-fetched data.\n\nThe data is from deps.dev and is licensed under CC-BY-4.0 as mentioned at https://github.com/google/deps.dev::\n\n    As well as aggregating data, deps.dev generates additional data, including resolved dependencies,\n    advisory statistics, associations between entities, etc. This generated data is available under a\n    CC-BY 4.0 license.\n","funding_links":["https://github.com/sponsors/aboutcode-org","https://opencollective.com/aboutcode","https://causes.benevity.org/causes/056-5528680976845_a486"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutcode-org%2Fpopular-package-purls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faboutcode-org%2Fpopular-package-purls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutcode-org%2Fpopular-package-purls/lists"}