{"id":36455299,"url":"https://github.com/iamdavidzeng/gonameko","last_synced_at":"2026-01-11T23:02:37.460Z","repository":{"id":46710232,"uuid":"320772427","full_name":"iamdavidzeng/gonameko","owner":"iamdavidzeng","description":"A Golang implementation of Nameko","archived":false,"fork":false,"pushed_at":"2021-09-29T11:37:23.000Z","size":26,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-07-27T22:12:54.013Z","etag":null,"topics":["golang","nameko"],"latest_commit_sha":null,"homepage":"","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/iamdavidzeng.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}},"created_at":"2020-12-12T07:19:08.000Z","updated_at":"2021-09-29T03:11:30.000Z","dependencies_parsed_at":"2022-09-10T08:10:34.223Z","dependency_job_id":null,"html_url":"https://github.com/iamdavidzeng/gonameko","commit_stats":null,"previous_names":["iamdavidzeng/gonamekoclient"],"tags_count":2,"template":null,"template_full_name":null,"purl":"pkg:github/iamdavidzeng/gonameko","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamdavidzeng%2Fgonameko","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamdavidzeng%2Fgonameko/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamdavidzeng%2Fgonameko/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamdavidzeng%2Fgonameko/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamdavidzeng","download_url":"https://codeload.github.com/iamdavidzeng/gonameko/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamdavidzeng%2Fgonameko/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28326166,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T22:11:01.104Z","status":"ssl_error","status_checked_at":"2026-01-11T22:10:58.990Z","response_time":60,"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":["golang","nameko"],"created_at":"2026-01-11T23:02:37.398Z","updated_at":"2026-01-11T23:02:37.455Z","avatar_url":"https://github.com/iamdavidzeng.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gonameko\nA Golang implementation of Nameko\n\n## Usage\n```\ngo get -u github.com/iamdavidzeng/gonameko\n```\n\nclient pattern\n```\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/iamdavidzeng/gonameko\"\n)\n\nfunc main() {\n\tclient := gonameko.Client{\n\t\tRabbitHostname: \"localhost\",\n\t\tRabbitUser:     \"guest\",\n\t\tRabbitPass:     \"guest\",\n\t\tRabbitPort:     5672,\n\t\tContentType:    \"application/json\",\n\t}\n\tclient.Setup()\n\n\tresponse, err := client.Call(gonameko.RPCRequestParam{\n\t\tService:  \"locations\",\n\t\tFunction: \"health_check\",\n\t\tPayload: gonameko.RPCPayload{\n\t\t\tArgs:   []string{},\n\t\t\tKwargs: map[string]string{},\n\t\t},\n\t})\n\tif err != nil {\n\t\tfmt.Println(err)\n\t} else {\n\t\tfmt.Println(response)\n\t}\n}\n```\n\nserver pattern\n```\npackage main\n\nimport \"github.com/iamdavidzeng/gonameko\"\n\nfunc main() {\n\tserver := gonameko.Server{\n\t\tName:           \"gonameko\",\n\t\tRabbitHostname: \"localhost\",\n\t\tRabbitUser:     \"guest\",\n\t\tRabbitPass:     \"guest\",\n\t\tRabbitPort:     5672,\n\t\tContentType:    \"application/json\",\n\t}\n\tserver.Run()\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamdavidzeng%2Fgonameko","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamdavidzeng%2Fgonameko","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamdavidzeng%2Fgonameko/lists"}