{"id":36353728,"url":"https://github.com/dab246/super_dns","last_synced_at":"2026-01-13T22:54:35.665Z","repository":{"id":331864891,"uuid":"1084035970","full_name":"dab246/super_dns","owner":"dab246","description":"A modern Dart package for working with the DNS protocol, supporting query parsing,    encoding, and response handling with IPv4/IPv6 support. Updated for Dart 3.8.1    and compatible with the Super IP/Raw stack.","archived":false,"fork":false,"pushed_at":"2025-10-28T06:04:38.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T16:23:39.804Z","etag":null,"topics":["dns","ipv4","ipv6","network"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/super_dns","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dab246.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2025-10-27T06:02:57.000Z","updated_at":"2025-11-07T05:26:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dab246/super_dns","commit_stats":null,"previous_names":["dab246/super_dns"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dab246/super_dns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dab246%2Fsuper_dns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dab246%2Fsuper_dns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dab246%2Fsuper_dns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dab246%2Fsuper_dns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dab246","download_url":"https://codeload.github.com/dab246/super_dns/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dab246%2Fsuper_dns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: 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":["dns","ipv4","ipv6","network"],"created_at":"2026-01-11T13:39:04.152Z","updated_at":"2026-01-13T22:54:35.648Z","avatar_url":"https://github.com/dab246.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Super DNS\n\n[![Pub Version](https://img.shields.io/pub/v/super_dns.svg)](https://pub.dev/packages/super_dns)\n[![Dart SDK](https://img.shields.io/badge/Dart-%3E%3D3.8.0-blue)](https://dart.dev)\n\nA modern Dart package for working with the **DNS protocol**, supporting query parsing, encoding, and response handling with IPv4 and IPv6 support.\n\nBuilt on top of [`super_ip`](https://pub.dev/packages/super_ip) and [`super_raw`](https://pub.dev/packages/super_raw) for efficient binary-level DNS message handling.\n\n---\n\n## 🚀 Features\n\n✅ Fully null-safe  \n✅ Compatible with Dart 3.8+  \n✅ DNS query and response parsing  \n✅ Support for A, AAAA, MX, TXT, and SRV records  \n✅ Works with IPv4 and IPv6\n\n---\n\n## 📦 Installation\n\nAdd to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  super_dns: ^0.1.0\n```\n\nThen run:\n\n```bash\ndart pub get\n```\n\n---\n\n## 🧠 Example\n\n```dart\nimport 'package:super_dns/super_dns.dart';\n\nvoid main() async {\n  final query = DnsQuery.standard('example.com', type: DnsRecordType.a);\n  final response = await DnsClient.google().lookup(query);\n\n  print('Got ${response.answers.length} answers:');\n  for (final answer in response.answers) {\n    print(answer);\n  }\n}\n```\n\n---\n\n## 🧩 Dependencies\n- [`super_ip`](https://pub.dev/packages/super_ip): IP stack abstraction.\n- [`super_raw`](https://pub.dev/packages/super_raw): binary data encoding utilities.\n- [`universal_io`](https://pub.dev/packages/universal_io): cross-platform I/O APIs.\n\n---\n\n## 🛠 Development\n\nRun tests:\n\n```bash\ndart test\n```\n\nRun analysis:\n\n```bash\ndart analyze\n```\n\n---\n\n## 📄 License\nMIT © 2025 [dab246](https://github.com/dab246)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdab246%2Fsuper_dns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdab246%2Fsuper_dns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdab246%2Fsuper_dns/lists"}