{"id":43379111,"url":"https://github.com/libdns/he","last_synced_at":"2026-02-02T07:45:06.850Z","repository":{"id":251470466,"uuid":"837358043","full_name":"libdns/he","owner":"libdns","description":"Hurricane Electric","archived":false,"fork":false,"pushed_at":"2025-11-11T20:31:29.000Z","size":64,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-11T22:23:07.531Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/libdns.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":"2024-08-02T19:30:53.000Z","updated_at":"2025-11-11T20:31:27.000Z","dependencies_parsed_at":"2024-08-03T09:26:51.323Z","dependency_job_id":"213c747b-83c2-4c84-a02b-71c73f878424","html_url":"https://github.com/libdns/he","commit_stats":null,"previous_names":["libdns/he"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/libdns/he","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libdns%2Fhe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libdns%2Fhe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libdns%2Fhe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libdns%2Fhe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libdns","download_url":"https://codeload.github.com/libdns/he/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libdns%2Fhe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29007316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T06:37:10.400Z","status":"ssl_error","status_checked_at":"2026-02-02T06:37:09.383Z","response_time":58,"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-02-02T07:45:05.444Z","updated_at":"2026-02-02T07:45:06.843Z","avatar_url":"https://github.com/libdns.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Hurricane Electric for [`libdns`](https://github.com/libdns/libdns)\n========================\n\n[![Go Reference](https://pkg.go.dev/badge/test.svg)](https://pkg.go.dev/github.com/libdns/he)\n\nThis package implements the [libdns interfaces](https://github.com/libdns/libdns) for Hurricane Electric,\nallowing you to manage DNS records.\n\nThis package uses the dynamic DNS feature of Hurricane Electric Hosted DNS.\n\nConfiguration\n=============\n\nTo configure a dynamic DNS record in HE, login to the [HE DNS portal](https://dns.he.net/)\nand select the domain to configure the record under.\n\nAdd a new A/AAAA/TXT record and select the \"Enable entry for dynamic dns\" option.\n\nOnce the record has been created click the Generate a DDNS key 🗘 button and set a key.\n\nExample\n=======\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/libdns/he\"\n\t\"github.com/libdns/libdns\"\n)\n\nfunc main() {\n\tkey := os.Getenv(\"LIBDNS_HE_KEY\")\n\tif key == \"\" {\n\t\tfmt.Println(\"LIBDNS_HE_KEY not set\")\n\t\treturn\n\t}\n\n\tzone := os.Getenv(\"LIBDNS_HE_ZONE\")\n\tif zone == \"\" {\n\t\tfmt.Println(\"LIBDNS_HE_ZONE not set\")\n\t\treturn\n\t}\n\n\tp := \u0026he.Provider{\n\t\tAPIKey: key,\n\t}\n\n\trecords := []libdns.Record{\n\t\t{\n\t\t\tType:  \"A\",\n\t\t\tName:  \"test\",\n\t\t\tValue: \"198.51.100.1\",\n\t\t},\n\t\t{\n\t\t\tType:  \"AAAA\",\n\t\t\tName:  \"test\",\n\t\t\tValue: \"2001:0db8::1\",\n\t\t},\n\t\t{\n\t\t\tType:  \"TXT\",\n\t\t\tName:  \"test\",\n\t\t\tValue: \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\",\n\t\t},\n\t}\n\n\tctx := context.Background()\n\t_, err := p.SetRecords(ctx, zone, records)\n\tif err != nil {\n\t\tfmt.Printf(\"Error: %v\", err)\n\t\treturn\n\t}\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibdns%2Fhe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibdns%2Fhe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibdns%2Fhe/lists"}