{"id":48437490,"url":"https://github.com/ysm-dev/domaingrep","last_synced_at":"2026-06-14T05:01:29.971Z","repository":{"id":347548560,"uuid":"1194466481","full_name":"ysm-dev/domaingrep","owner":"ysm-dev","description":"Bulk domain availability checker CLI","archived":false,"fork":false,"pushed_at":"2026-06-04T03:09:48.000Z","size":180,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-04T05:26:18.175Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/ysm-dev.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2026-03-28T11:53:35.000Z","updated_at":"2026-04-16T09:09:46.000Z","dependencies_parsed_at":"2026-06-02T05:01:03.081Z","dependency_job_id":null,"html_url":"https://github.com/ysm-dev/domaingrep","commit_stats":null,"previous_names":["ysm-dev/domaingrep"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/ysm-dev/domaingrep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysm-dev%2Fdomaingrep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysm-dev%2Fdomaingrep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysm-dev%2Fdomaingrep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysm-dev%2Fdomaingrep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ysm-dev","download_url":"https://codeload.github.com/ysm-dev/domaingrep/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ysm-dev%2Fdomaingrep/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34309655,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"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":[],"created_at":"2026-04-06T14:00:50.293Z","updated_at":"2026-06-14T05:01:29.953Z","avatar_url":"https://github.com/ysm-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# domaingrep\n\nSuper fast bulk domain availability search across every TLD.\n\n```\n$ domaingrep bunsh\nbun.sh\nbunsh.com\nbunsh.net\nbunsh.org\nbunsh.xyz\nbunsh.co\nbunsh.io\nbunsh.dev\n...\n```\n\nOne keyword. Every TLD. Results in under a second.\n\n## Install\n\nRun instantly without installing:\n\n```sh\nnpx domaingrep abc\nbunx domaingrep abc\n```\n\nOr install globally:\n\n```sh\ncurl -fsSL https://domaingrep.dev/install.sh | sh   # Shell (macOS / Linux)\nbrew install ysm-dev/tap/domaingrep                 # Homebrew\ncargo install domaingrep                            # Cargo\nnpm  install -g domaingrep                          # npm\nbun  install -g domaingrep                          # Bun\n```\n\n## Usage\n\n**Search all TLDs:**\n\n```\n$ domaingrep abc\nabc.com\nabc.net\nabc.sh\nabc.xyz\n...\n```\n\n**Domain hack detection** -- automatically finds creative splits where\nthe TLD is part of the word:\n\n```\n$ domaingrep bunsh\nbun.sh\nbunsh.com\nbunsh.io\nbunsh.dev\n...\n\n$ domaingrep openai\nopen.ai\nopenai.com\nopenai.dev\n...\n```\n\n**Filter by TLD prefix:**\n\n```\n$ domaingrep abc.c\nabc.com\nabc.co\nabc.cc\nabc.club\n...\n```\n\n**Filter by TLD length:**\n\n```\n$ domaingrep abc --tld-len 2\nabc.ai\nabc.co\nabc.io\nabc.me\nabc.sh\nabc.so\nabc.to\n...\n```\n\n**Show all results** including taken domains:\n\n```\n$ domaingrep abc --all\n  abc.sh\nx abc.com\nx abc.net\n  abc.xyz\n  abc.co\n...\n```\n\n**JSON output** for scripting:\n\n```\n$ domaingrep bunsh --json --all\n{\"domain\":\"bun.sh\",\"available\":true,\"kind\":\"hack\",\"method\":\"cache\"}\n{\"domain\":\"bunsh.com\",\"available\":false,\"kind\":\"regular\",\"method\":\"dns\"}\n{\"domain\":\"bunsh.io\",\"available\":true,\"kind\":\"regular\",\"method\":\"dns\"}\n```\n\nPipe-friendly: when stdout is not a TTY, the default limit is removed\nand colors are disabled.\n\n```sh\ndomaingrep abc --json | jq -r 'select(.available) | .domain'\n```\n\n## Options\n\n```\ndomaingrep [OPTIONS] \u003cDOMAIN\u003e\n```\n\n| Flag | Short | Default | Description |\n|------|-------|---------|-------------|\n| `--all` | `-a` | | Show unavailable domains too |\n| `--json` | `-j` | | Output as NDJSON |\n| `--tld-len \u003cRANGE\u003e` | `-t` | | Filter TLDs by length: `2`, `2..5`, `..3`, `4..` |\n| `--limit \u003cN\u003e` | `-l` | `25` | Max results (`0` for unlimited, unlimited when piped) |\n| `--color \u003cWHEN\u003e` | | `auto` | `auto`, `always`, `never` |\n\n### Exit codes\n\n| Code | Meaning |\n|------|---------|\n| `0` | At least one available domain found |\n| `1` | No available domains found |\n| `2` | Invalid input or error |\n\n\u003cdetails\u003e\n\u003csummary\u003eEnvironment variables\u003c/summary\u003e\n\nAll configuration is via environment variables. Defaults work out of the box.\n\n| Variable | Default | Description |\n|----------|---------|-------------|\n| `DOMAINGREP_RESOLVERS` | Public DNS | Custom DNS resolvers (comma or space separated) |\n| `DOMAINGREP_RESOLVE_CONCURRENCY` | `1000` | Max in-flight DNS queries |\n| `DOMAINGREP_RESOLVE_TIMEOUT_MS` | `500` | Per-attempt timeout in ms |\n| `DOMAINGREP_RESOLVE_ATTEMPTS` | `4` | Max retry attempts per domain |\n| `DOMAINGREP_CACHE_DIR` | Platform cache dir | Override cache directory |\n| `DOMAINGREP_DISABLE_UPDATE` | `false` | Disable background version check |\n\n\u003c/details\u003e\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fysm-dev%2Fdomaingrep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fysm-dev%2Fdomaingrep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fysm-dev%2Fdomaingrep/lists"}