{"id":29883458,"url":"https://github.com/nitroshare/gomdns","last_synced_at":"2026-02-27T01:01:24.586Z","repository":{"id":305617127,"uuid":"1023255279","full_name":"nitroshare/gomdns","owner":"nitroshare","description":"mDNS browser and provider for Go applications","archived":false,"fork":false,"pushed_at":"2025-07-28T18:42:40.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-28T20:41:54.286Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/nitroshare.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2025-07-20T21:14:03.000Z","updated_at":"2025-07-28T18:42:44.000Z","dependencies_parsed_at":"2025-07-28T20:26:47.878Z","dependency_job_id":null,"html_url":"https://github.com/nitroshare/gomdns","commit_stats":null,"previous_names":["nitroshare/gomdns"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nitroshare/gomdns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitroshare%2Fgomdns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitroshare%2Fgomdns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitroshare%2Fgomdns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitroshare%2Fgomdns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nitroshare","download_url":"https://codeload.github.com/nitroshare/gomdns/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitroshare%2Fgomdns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29879896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"ssl_error","status_checked_at":"2026-02-26T23:50:46.793Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2025-07-31T13:20:08.574Z","updated_at":"2026-02-27T01:01:24.577Z","avatar_url":"https://github.com/nitroshare.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## gomdns\n\n[![Build Status](https://github.com/nitroshare/gomdns/actions/workflows/test.yml/badge.svg)](https://github.com/nitroshare/gomdns/actions/workflows/test.yml)\n[![Coverage Status](https://coveralls.io/repos/github/nitroshare/gomdns/badge.svg?branch=main)](https://coveralls.io/github/nitroshare/gomdns?branch=main)\n[![Go Reference](https://pkg.go.dev/badge/github.com/nitroshare/gomdns.svg)](https://pkg.go.dev/github.com/nitroshare/gomdns)\n[![MIT License](https://img.shields.io/badge/license-MIT-9370d8.svg?style=flat)](https://opensource.org/licenses/MIT)\n\nThis package aims to provide an [RFC 6762](https://datatracker.ietf.org/doc/html/rfc6762) compliant mDNS package for Go applications, with a heavy focus on simplicity. Although there are existing mDNS packages for Go, each of them lacked something we wanted, leading to the start of this package.\n\n### Features\n\n- Browser for continuously monitoring other devices providing a service\n- Provider for exposing a local service on the network\n- Ability to easily change parameters without recreating everything\n- Comprehensive test suite to ensure compliance\n\nThis package is heavily based on [QMdnsEngine](https://github.com/nitroshare/qmdnsengine).\n\n### Browser Example\n\nWant to find devices on the network that provide `_http._tcp`?\n\n```golang\nimport \"github.com/nitroshare/gomdns/browser\"\n\n// Channels receive *Device when a device is added or removed\nvar (\n    chanAdded   = make(chan *Device)\n    chanRemoved = make(chan *Device)\n)\n\n// Create the browser\nb, _ := browser.New(\u0026browser.Config{\n    Service:     \"_http._tcp\",\n    ChanAdded:   chanAdded,\n    ChanRemoved: chanRemoved,\n})\n\n// Read from chanAdded or chanRemoved in a separate goroutine\nd := \u003c-chanAdded\nd := \u003c-chanRemoved\n\n// Close the browser when you are done\nb.Close()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitroshare%2Fgomdns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnitroshare%2Fgomdns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitroshare%2Fgomdns/lists"}