{"id":23282018,"url":"https://github.com/go-joe/http-server","last_synced_at":"2026-04-30T10:03:34.556Z","repository":{"id":57486266,"uuid":"173566312","full_name":"go-joe/http-server","owner":"go-joe","description":"HTTP server integrations for the Joe bot library","archived":false,"fork":false,"pushed_at":"2020-02-29T17:28:29.000Z","size":42,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-12T20:17:42.544Z","etag":null,"topics":["bot","chat","chatbot-framework","joe","slack"],"latest_commit_sha":null,"homepage":"https://github.com/go-joe/joe","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/go-joe.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-03T11:31:50.000Z","updated_at":"2022-12-02T07:21:29.000Z","dependencies_parsed_at":"2022-09-18T18:16:03.541Z","dependency_job_id":null,"html_url":"https://github.com/go-joe/http-server","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-joe%2Fhttp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-joe%2Fhttp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-joe%2Fhttp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-joe%2Fhttp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/go-joe","download_url":"https://codeload.github.com/go-joe/http-server/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247492543,"owners_count":20947545,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bot","chat","chatbot-framework","joe","slack"],"created_at":"2024-12-20T00:13:36.325Z","updated_at":"2026-04-30T10:03:29.507Z","avatar_url":"https://github.com/go-joe.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eJoe Bot - HTTP Server\u003c/h1\u003e\n\u003cp align=\"center\"\u003eProviding HTTP integrations for Joe. https://github.com/go-joe/joe\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n\t\u003ca href=\"https://github.com/go-joe/http-server/releases\"\u003e\u003cimg src=\"https://img.shields.io/github/tag/go-joe/http-server.svg?label=version\u0026color=brightgreen\"\u003e\u003c/a\u003e\n\t\u003ca href=\"https://circleci.com/gh/go-joe/http-server/tree/master\"\u003e\u003cimg src=\"https://circleci.com/gh/go-joe/http-server/tree/master.svg?style=shield\"\u003e\u003c/a\u003e\n\t\u003ca href=\"https://goreportcard.com/report/github.com/go-joe/http-server\"\u003e\u003cimg src=\"https://goreportcard.com/badge/github.com/go-joe/http-server\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://codecov.io/gh/go-joe/http-server\"\u003e\u003cimg src=\"https://codecov.io/gh/go-joe/http-server/branch/master/graph/badge.svg\"/\u003e\u003c/a\u003e\n\t\u003ca href=\"https://pkg.go.dev/github.com/go-joe/http-server?tab=doc\"\u003e\u003cimg src=\"https://img.shields.io/badge/godoc-reference-blue.svg?color=blue\"\u003e\u003c/a\u003e\n\t\u003ca href=\"https://github.com/go-joe/http-server/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/badge/license-BSD--3--Clause-blue.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\nThis repository contains a module for the [Joe Bot library][joe].\n\n## Getting Started\n\nThis library is packaged as [Go module][go-modules]. You can get it via:\n\n```bash\ngo get github.com/go-joe/http-server\n```\n\n### Example usage\n\nIn order to let your bot listen to HTTP requests you should pass the `http.Server(…)`\nmodule when creating a new bot:\n\n```go\npackage main\n\nimport (\n\t\"github.com/go-joe/joe\"\n\t\"github.com/go-joe/http-server\"\n)\n\nfunc main() {\n\tb := joe.New(\"example-bot\",\n\t\tjoehttp.Server(\"localhost:12345\"),\n\t\t…\n\t)\n\t\n\terr := b.Run()\n\tif err != nil {\n\t\tb.Logger.Fatal(err.Error())\n\t}\n}\n```\n\nWhen the server receives a request, it will emit it to the bots brain as `joehttp.RequestEvent`.\n\n## Built With\n\n* [zap](https://github.com/uber-go/zap) - Blazing fast, structured, leveled logging in Go\n* [testify](https://github.com/stretchr/testify) - A simple unit test library\n\n## Contributing\n\nIf you want to hack on this repository, please read the short [CONTRIBUTING.md](CONTRIBUTING.md)\nguide first.\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available,\nsee the [tags on this repository][tags]. \n\n## Authors\n\n- **Friedrich Große** - *Initial work* - [fgrosse](https://github.com/fgrosse)\n\nSee also the list of [contributors][contributors] who participated in this project.\n\n## License\n\nThis project is licensed under the BSD-3-Clause License - see the [LICENSE](LICENSE) file for details.\n\n[joe]: https://github.com/go-joe/joe\n[go-modules]: https://github.com/golang/go/wiki/Modules\n[tags]: https://github.com/go-joe/http-server/tags\n[contributors]: https://github.com/go-joe/http-server/contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-joe%2Fhttp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgo-joe%2Fhttp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-joe%2Fhttp-server/lists"}