{"id":48632848,"url":"https://github.com/stone/ripple","last_synced_at":"2026-04-09T06:02:38.924Z","repository":{"id":339221595,"uuid":"1160987916","full_name":"stone/ripple","owner":"stone","description":"DNS propagation tracker — watch records ripple across authoritative nameservers and public resolvers. CLI, TUI, and HTTP API.","archived":false,"fork":false,"pushed_at":"2026-02-18T16:02:09.000Z","size":485,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-18T19:49:35.013Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/stone.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-18T15:53:58.000Z","updated_at":"2026-02-18T16:02:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/stone/ripple","commit_stats":null,"previous_names":["stone/ripple"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/stone/ripple","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stone%2Fripple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stone%2Fripple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stone%2Fripple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stone%2Fripple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stone","download_url":"https://codeload.github.com/stone/ripple/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stone%2Fripple/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31588038,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-09T05:33:47.836Z","status":"ssl_error","status_checked_at":"2026-04-09T05:32:26.579Z","response_time":112,"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":[],"created_at":"2026-04-09T06:02:38.320Z","updated_at":"2026-04-09T06:02:38.917Z","avatar_url":"https://github.com/stone.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ripple\n\nDNS propagation checker. Walks the DNS tree from root servers, finds all authoritative nameservers for a domain, then polls them (and a set of public resolvers) until the record shows up or a timeout is hit.\n\nThree modes: CLI for scripting/piping, a TUI for interactive use, and an HTTP server with a web UI.\n\n## Usage\n\n```sh\n# wait for an A record to appear\nripple -t a -m 1.2.3.4 example.com\n\n# check a TXT record with custom timing\nripple -t txt -m \"v=spf1\" -w 2m -r 3s example.com\n\n# interactive TUI\nripple -tui\n\n# web UI + API\nripple -serve :8080\n```\n\n## Screenshots\n\n**TUI**\n\n![TUI](doc/screenshot-tui.png)\n\n**TTY / CLI output**\n\n![TTY](doc/screenshot-tty.png)\n\n**Web UI**\n\n![Web UI](doc/screenshot-webui.png)\n\n**API**\n\n![API](doc/screenshot-api.png)\n\n## Install\n\n```sh\ngo install .\n```\n\nOr build manually:\n\n```sh\nmake build\n```\n\nStatic binary (for containers/k8s):\n\n```sh\nmake build-static\n```\n\nDocker:\n\n```sh\nmake docker-local\ndocker run --rm -p 8080:8080 ripple -serve :8080\n```\n\n## Config\n\nCopy `config.example.yaml` and pass it with `-c`:\n\n```sh\nripple -c config.yaml -serve :8080\n```\n\nThe config lets you set default timeouts, the resolver list, and the root servers used for NS traversal.\n\n## HTTP API\n\n```\nGET  /check?domain=example.com\u0026type=a\u0026match=1.2.3.4\nPOST /check  {\"domain\":\"...\",\"type\":\"txt\",\"match\":\"...\",\"timeout\":\"1m\",\"retry\":\"5s\"}\nGET  /check/stream?...   (SSE, used by the web UI)\nGET  /health\n```\n\n## Helm\n\n```sh\n# Install\nhelm install ripple oci://ghcr.io/stone/charts/ripple --version 0.1.2\n\n# With ingress enabled\nhelm install ripple oci://ghcr.io/stone/charts/ripple --version 0.1.2 \\\n  --set ingress.enabled=true \\\n  --set ingress.hosts[0].host=ripple.example.com\n\n# Upgrade\nhelm upgrade ripple oci://ghcr.io/stone/charts/ripple --version 0.1.3\n```\n\nThe chart deploys ripple in HTTP server mode (`-serve`). Override `config.*` values to adjust resolvers, timeouts, or the listen address.\n\n## Record types\n\n`a`, `aaaa`, `txt`, `cname`, `mx`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstone%2Fripple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstone%2Fripple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstone%2Fripple/lists"}