{"id":20388540,"url":"https://github.com/si3nloong/webhook","last_synced_at":"2025-09-14T15:32:38.323Z","repository":{"id":36975504,"uuid":"402643695","full_name":"si3nloong/webhook","owner":"si3nloong","description":"A webhook server comply with at least once delivery. (Cloud Native) - WIP","archived":false,"fork":false,"pushed_at":"2023-06-05T05:03:00.000Z","size":528,"stargazers_count":7,"open_issues_count":10,"forks_count":1,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-06-08T16:02:53.011Z","etag":null,"topics":["cli","curl","docker","go","grpc","k8s","message-queue","webhook","webhook-server"],"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/si3nloong.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":"2021-09-03T04:14:02.000Z","updated_at":"2024-02-18T05:37:03.000Z","dependencies_parsed_at":"2024-06-19T11:31:02.481Z","dependency_job_id":"8590c5ed-a1db-4b24-aa28-07a736b8642d","html_url":"https://github.com/si3nloong/webhook","commit_stats":{"total_commits":149,"total_committers":3,"mean_commits":"49.666666666666664","dds":"0.42281879194630867","last_synced_commit":"3d09e97ac9de53777a318b16698ccef1cb5c4988"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/si3nloong/webhook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/si3nloong%2Fwebhook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/si3nloong%2Fwebhook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/si3nloong%2Fwebhook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/si3nloong%2Fwebhook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/si3nloong","download_url":"https://codeload.github.com/si3nloong/webhook/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/si3nloong%2Fwebhook/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269838444,"owners_count":24483200,"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","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","curl","docker","go","grpc","k8s","message-queue","webhook","webhook-server"],"created_at":"2024-11-15T03:11:20.750Z","updated_at":"2025-08-11T06:06:11.418Z","avatar_url":"https://github.com/si3nloong.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/28108597/136213335-8eb3bff5-cda2-4758-a723-2fce660892af.png\" width=\"140px\"\u003e\n\u003c/p\u003e\n\n# Webhook Server\n\n\u003e A golang webhook server comply with at least once deliver.\n\n[![Build](https://github.com/si3nloong/webhook/workflows/Testing/badge.svg?branch=master)](https://github.com/si3nloong/webhook/actions/workflows/test.yml)\n[![Release](https://img.shields.io/github/v/tag/si3nloong/webhook)](https://github.com/si3nloong/webhook/releases)\n[![Go Report](https://goreportcard.com/badge/github.com/si3nloong/webhook)](https://goreportcard.com/report/github.com/si3nloong/webhook)\n[![Go Coverage](https://codecov.io/gh/si3nloong/webhook/branch/master/graph/badge.svg)](https://codecov.io/gh/si3nloong/webhook)\n[![LICENSE](https://img.shields.io/github/license/si3nloong/webhook)](https://github.com/si3nloong/webhook/blob/master/LICENSE)\n\n## 🔨 Installation\n\n```bash\ngo get github.com/si3nloong/webhook\n```\n\n## ⚙️ Configuration\n\n```yaml\n# HTTP server\nenabled: true\nport: 3000\nno_of_worker: 2\nmax_pending_webhook: 10000\n\n# gRPC server\ngrpc:\n  enabled: true # enable gRPC server\n  api_key: \"abcd\"\n  port: 9000\n\nmessage_queue:\n  engine: \"redis\" # possible value is redis, nats, nsq\n  topic: \"webhook\"\n  queue_group: \"webhook\"\n  redis:\n    cluster: false\n    addr: \"127.0.0.1:6379\"\n    password: \"\"\n    db: 1\n  nats:\n    js: true # indicate whether use jetstream or not\n```\n\n## ✨ Features\n\n- Support [YAML](https://yaml.org/) and [env](https://en.wikipedia.org/wiki/Env) configuration.\n- Automatically re-send webhook if the response is fail.\n- [RESTful](https://en.wikipedia.org/wiki/Representational_state_transfer) API ready.\n- [GraphQL](https://graphql.org/) API ready.\n- Support [gRPC](https://grpc.io/) protocol.\n- Allow to send a webhook using [cURL](https://curl.se/) command\n- Support Inmemory, [Redis](https://redis.io/), [NATS](https://nats.io/), NSQ as [Message Queue](https://en.wikipedia.org/wiki/Message_queue) engine.\n- Support [Elasticsearch](https://www.elastic.co/) as Persistent Volume engine.\n- Dockerize.\n- Configurable.\n- [Kubernetes](https://kubernetes.io/) ready.\n- Headless friendly.\n- CLI ready.\n  \u003c!-- - Support tracing, [Jaeger](https://github.com/jaegertracing/jaeger), [OpenCensus](https://opencensus.io/) --\u003e\n\n## ⚡️ rest APIs\n\nPlease refer to [here](/app/http/rest/README.md).\n\n## ⚡️ GraphQL API\n\nPlease refer to [here](/app/http/graphql/README.md).\n\n## 💡 gRPC API\n\nPlease refer to [here](/app/grpc/README.md).\n\n## ⚠️ Disclaimer\n\nThis project still under development, don't use this in production!\n\n## 🎉 Big Thanks To\n\nThanks to these awesome companies for their support of Open Source developers ❤\n\n[![GitHub](https://jstools.dev/img/badges/github.svg)](https://github.com/open-source)\n[![NPM](https://jstools.dev/img/badges/npm.svg)](https://www.npmjs.com/)\n\n## License\n\nCopyright 2021 SianLoong\n\nLicensed under the [MIT License](/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsi3nloong%2Fwebhook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsi3nloong%2Fwebhook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsi3nloong%2Fwebhook/lists"}