{"id":37105645,"url":"https://github.com/gentom/goemon","last_synced_at":"2026-01-14T12:44:32.326Z","repository":{"id":171111752,"uuid":"145357296","full_name":"gentom/goemon","owner":"gentom","description":"Goemon/五ヱ門 ʕ◔ϖ◔ʔ - Micro framework for building APIs. [WIP]","archived":false,"fork":false,"pushed_at":"2019-08-24T09:39:34.000Z","size":8,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-05-30T21:33:10.747Z","etag":null,"topics":["api-framework","golang","micro-framework","zero-dependency"],"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/gentom.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}},"created_at":"2018-08-20T02:40:18.000Z","updated_at":"2024-06-19T12:40:50.098Z","dependencies_parsed_at":"2024-06-19T12:40:49.660Z","dependency_job_id":"b5a4d247-5ed5-4a72-921a-2bcf10519344","html_url":"https://github.com/gentom/goemon","commit_stats":null,"previous_names":["gentom/goemon"],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/gentom/goemon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gentom%2Fgoemon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gentom%2Fgoemon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gentom%2Fgoemon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gentom%2Fgoemon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gentom","download_url":"https://codeload.github.com/gentom/goemon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gentom%2Fgoemon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28420814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"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":["api-framework","golang","micro-framework","zero-dependency"],"created_at":"2026-01-14T12:44:31.659Z","updated_at":"2026-01-14T12:44:32.318Z","avatar_url":"https://github.com/gentom.png","language":"Go","readme":"# Goemon  \nGoemon is a micro framework which is zero-dependencies for building APIs.    \nGoemon is still in development.\n\n## Usage\n```\npackage main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"net/url\"\n\n\t\"github.com/gentom/goemon\"\n)\n\nfunc main() {\n\tapi := goemon.New()\n\tapi.GET(\"/\", root)\n\tapi.GET(\"/hello\", hello)\n\tapi.GET(\"/langs/:lang\", programmingLangs)\n\tapi.GET(\"/langs/:lang/framework\", framework)\n\tapi.Start(5000)\n}\n\nfunc root(w http.ResponseWriter, r *http.Request, params url.Values) {\n\tfmt.Fprint(w, \"root\\n\")\n}\n\nfunc hello(w http.ResponseWriter, r *http.Request, params url.Values) {\n\tfmt.Fprint(w, \"hello world!\\n\")\n}\n\nfunc programmingLangs(w http.ResponseWriter, r *http.Request, params url.Values) {\n\tfmt.Fprintf(w, \"%s is awesome!\", params[\"lang\"])\n}\n\nfunc framework(w http.ResponseWriter, r *http.Request, params url.Values) {\n\tfmt.Fprintf(w, \"This is %s's framework\", params[\"lang\"])\n}\n```\nIf you run the code above and curl the endpoint:\n```\n$ curl http://localhost:5000/\nroot\n\n$ curl http://localhost:5000/hello\nhello world!\n\n$ curl http://localhost:5000/langs/nim\n[nim] is awesome!\n\n$ curl http://localhost:5000/langs/golang/framework\nThis is [golang]'s framework\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgentom%2Fgoemon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgentom%2Fgoemon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgentom%2Fgoemon/lists"}