{"id":36440994,"url":"https://github.com/meero-com/hmb-proxy","last_synced_at":"2026-01-11T21:57:49.925Z","repository":{"id":278591783,"uuid":"901781622","full_name":"meero-com/hmb-proxy","owner":"meero-com","description":"HTTP server acting like an synchronous interface for asynchronous services.","archived":false,"fork":false,"pushed_at":"2025-03-19T09:57:36.000Z","size":7087,"stargazers_count":15,"open_issues_count":5,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-17T13:49:31.592Z","etag":null,"topics":["api","asynchronous","container","go","http"],"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/meero-com.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-11T09:56:46.000Z","updated_at":"2025-06-12T11:52:24.000Z","dependencies_parsed_at":"2025-02-20T16:46:36.722Z","dependency_job_id":null,"html_url":"https://github.com/meero-com/hmb-proxy","commit_stats":null,"previous_names":["meero-com/hmb-proxy"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/meero-com/hmb-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meero-com%2Fhmb-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meero-com%2Fhmb-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meero-com%2Fhmb-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meero-com%2Fhmb-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meero-com","download_url":"https://codeload.github.com/meero-com/hmb-proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meero-com%2Fhmb-proxy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28324621,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T18:42:50.174Z","status":"ssl_error","status_checked_at":"2026-01-11T18:39:13.842Z","response_time":60,"last_error":"SSL_read: 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","asynchronous","container","go","http"],"created_at":"2026-01-11T21:57:49.072Z","updated_at":"2026-01-11T21:57:49.919Z","avatar_url":"https://github.com/meero-com.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HMB proxy\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./logo.png\" alt=\"logo.png\" width=\"250\" height=\"250\"\u003e\u003cbr\u003e\n  \u003cb\u003eHold My Beer proxy\u003c/b\u003e\n\u003c/p\u003e\n\n------\n\nAbstract asynchronous processing and make it synchronous for your clients.\n\n[![CI](https://github.com/meero-com/hmb-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/meero-com/hmb-proxy/actions/workflows/ci.yml)\n\n## Goal\n\nThe HMB proxy is made to allow under-the-hood, loosely coupled processing with parallel processing in mind.\n\nInstead of having a \"fire \u0026 forget\", callback-supported asynchronous processing, customers can rely on simple HTTP calls\nwhile having all the benefits of async processing.\n\nUsing a **timeout** / **retry** / **exponential back-off** strategy, users can completely abstract the implementation\ncomplexity of asynchronous systems.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./docs/images/hmb-full.png\" alt=\"logo.png\"\u003e\u003cbr\u003e\n\u003c/p\u003e\n\n## Usage\n\n```console\n$ export GIN_MODE=release\n$ hmb-proxy --env=prod\n2025/02/19 15:33:01 sqs: map[destination_queue:output-queue source_queue:input-queue]\n2025/02/19 15:33:01 aws: map[access_key_id:default endpoint_url:http://localstack:4566/ region:eu-west-1 secret_access_key:default]\n2025/02/19 15:33:01 env: prod\n2025/02/19 15:33:01 server: map[port:8080]\n```\n\nYou can then forward requests to the proxy using `curl`.\n\nA dummy-service is available in [./dummy-service](./dummy-service) to try out the\nloosely coupling mechanism locally.\n\nAlternatively, the repository contains a [`./e2e`](./e2e) script to manually simulate\na backend service.\n\n\u003e This project is not Production-ready as of now. Feel free to use it, give your feedback and to help us improve it !\n\n## Build\n\nThis project supports packaging through container images.\n\nThe proxy can be built using the following command:\n\n```console\n$ docker build -t hmb-proxy:local .\n```\n\nIt can then be run locally using:\n```console\n$ docker run -it --rm hmb-proxy:local\n```\n\n## Development\n\nThe repository offers different utilities to improve development.\n\n### Compose setup\n\nA `docker-compose.yml` manifest is available in the top-level directory to emulate AWS services using localstack.\n\n```console\n$ docker compose up -d --wait\n[+] Running 2/2\n ✔ Container hmb-proxy-hmb-proxy-1   Healthy  1.8s\n ✔ Container hmb-proxy-localstack-1  Healthy  6.8s\n```\n\n## Glossary\n\n- Project name: HMB proxy\n- Reference to the executable: hmb-proxy\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeero-com%2Fhmb-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeero-com%2Fhmb-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeero-com%2Fhmb-proxy/lists"}