{"id":13771839,"url":"https://github.com/brompwnie/gocheckit","last_synced_at":"2026-03-09T23:35:01.553Z","repository":{"id":57518096,"uuid":"246909834","full_name":"brompwnie/gocheckit","owner":"brompwnie","description":"A Go tool to help identify Deprecated Go Modules.","archived":false,"fork":false,"pushed_at":"2020-06-15T16:15:43.000Z","size":24,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-11T04:32:00.457Z","etag":null,"topics":["deprecated","go","modules","tool"],"latest_commit_sha":null,"homepage":"","language":"Go","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/brompwnie.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}},"created_at":"2020-03-12T18:57:56.000Z","updated_at":"2024-08-12T19:58:44.000Z","dependencies_parsed_at":"2022-09-26T18:01:37.624Z","dependency_job_id":null,"html_url":"https://github.com/brompwnie/gocheckit","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/brompwnie/gocheckit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brompwnie%2Fgocheckit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brompwnie%2Fgocheckit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brompwnie%2Fgocheckit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brompwnie%2Fgocheckit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brompwnie","download_url":"https://codeload.github.com/brompwnie/gocheckit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brompwnie%2Fgocheckit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30316772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["deprecated","go","modules","tool"],"created_at":"2024-08-03T17:00:56.202Z","updated_at":"2026-03-09T23:35:01.111Z","avatar_url":"https://github.com/brompwnie.png","language":"Go","funding_links":[],"categories":["Linters"],"sub_categories":["Misc"],"readme":"# Gocheckit\nGocheckit is a Go tool that can be used to help identify Go modules that are potentially Deprecated.\n\n# What does it do?\nGocheckit uses your go.mod in JSON format and analyzes the modules to determine if they might be deprecated. It does the following:\n- Check a Go modules Github repo for any Deprecated Topics\n- Analyze the contents of a modules README for the presence of certain keywords i.e deprecated\n- Utilise your .netrc Github creds so you aren't throttled and can access Private Repos\n- It's multithreaded, if you're in a rush, use those cores!\n\n# Installation\n\n## Binaries\nFor installation instructions from binaries please visit the [Releases Page](https://github.com/brompwnie/gocheckit/releases).\n\n## Via Go\n```\ngo get github.com/brompwnie/gocheckit\n```\n\n# Building from source\n\nBuilding Gocheckit via Go:\n```\ngo build\n```\nBuilding Gocheckit via Make:\n```\nmake\n```\n\n# Usage\nGocheckit can be compiled into a binary for the targeted platform and supports the following usage\n```\nUsage of ./gocheckit:\n  -gomod string\n        go.mod JSON file to analyze. Run 'go mod edit -json' to get the JSON for your go.mod (default \"go.m\nod.json\")\n  -netrc string\n        Makes Gocheckit scan the provided '.netrc' file in the user's home directory for login name and pas\nsword. (default \"nil\")\n  -repo string\n        Repo to analyze (default \"nil\")\n  -threads int\n        Amount of threads to spawn. (default 5)\n  -verbose\n        Verbosity Level\n```\n\n# Example\n\nSimplest Usage\n\n```\n// Run this command to get your go modules in json format\n# go mod edit -json \u003e go.mod.json\n// Run gocheckit to analyze the go modules in the file go.mod.json\n# ./gocheckit\n[+] Go Checkit\n[*] Loading Modules from: go.mod.json\n[*] 11 Modules Loaded\n[!] Deprecated README Identified: github.com/bsm/sarama-cluster\n[!] Deprecated Topic Identified: github.com/bsm/sarama-cluster\n[!] Deprecated README Identified: github.com/uudashr/go-module\n```\n\nThrow some threads at the problem\n```\n# go mod edit -json \u003e go.mod.json\n# ./gocheckit -threads=10\n[+] Go Checkit\n[*] Loading Modules from: go.mod.json\n[*] 11 Modules Loaded\n[!] Deprecated README Identified: github.com/bsm/sarama-cluster\n[!] Deprecated Topic Identified: github.com/bsm/sarama-cluster\n[!] Deprecated README Identified: github.com/uudashr/go-module\n```\n\nUser your Github creds from .netrc for no throttling\n```\n# go mod edit -json \u003e go.mod.json\n# ./gocheckit -threads=10 -netrc=.netrc\n[+] Go Checkit\n[*] Loading Modules from: go.mod.json\n[*] 11 Modules Loaded\n[!] Deprecated README Identified: github.com/bsm/sarama-cluster\n[!] Deprecated Topic Identified: github.com/bsm/sarama-cluster\n[!] Deprecated README Identified: github.com/uudashr/go-module\n```\n\n# Issues, Bugs and Improvements\nFor any bugs, please submit an issue. There is a long list of improvements but please submit an Issue if there is something you want to see added to Gocheckit.\n\n# License\nGocheckit is licensed under the GNU General Public License v3.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrompwnie%2Fgocheckit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrompwnie%2Fgocheckit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrompwnie%2Fgocheckit/lists"}