{"id":22965186,"url":"https://github.com/ardikabs/gonvoy","last_synced_at":"2025-08-13T08:32:15.606Z","repository":{"id":198911954,"uuid":"701638085","full_name":"ardikabs/gonvoy","owner":"ardikabs","description":"A thin Go framework to write an HTTP Filter extension on Envoy Proxy","archived":false,"fork":false,"pushed_at":"2024-09-16T07:53:22.000Z","size":487,"stargazers_count":3,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-09-16T09:23:39.428Z","etag":null,"topics":["envoy-plugin","envoy-proxy","golang"],"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/ardikabs.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":"2023-10-07T06:06:11.000Z","updated_at":"2024-09-16T07:53:26.000Z","dependencies_parsed_at":"2024-05-05T15:23:12.339Z","dependency_job_id":"7669266d-d0ad-44bb-926a-14ef2e22a76f","html_url":"https://github.com/ardikabs/gonvoy","commit_stats":null,"previous_names":["ardikabs/go-envoy","ardikabs/gonvoy","ardikabs/gaetway"],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardikabs%2Fgonvoy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardikabs%2Fgonvoy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardikabs%2Fgonvoy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ardikabs%2Fgonvoy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ardikabs","download_url":"https://codeload.github.com/ardikabs/gonvoy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229749278,"owners_count":18118325,"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":["envoy-plugin","envoy-proxy","golang"],"created_at":"2024-12-14T20:13:48.292Z","updated_at":"2024-12-14T20:13:48.891Z","avatar_url":"https://github.com/ardikabs.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gonvoy\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/ardikabs/gonvoy.svg)](https://pkg.go.dev/github.com/ardikabs/gonvoy)\n[![Go Report Card](https://goreportcard.com/badge/github.com/ardikabs/gonvoy)](https://goreportcard.com/report/github.com/ardikabs/gonvoy)\n[![Test](https://github.com/ardikabs/gonvoy/actions/workflows/test.yaml/badge.svg?branch=main)](https://github.com/ardikabs/gonvoy/actions/workflows/test.yaml)\n[![Codecov](https://codecov.io/gh/ardikabs/gonvoy/branch/main/graph/badge.svg)](https://codecov.io/gh/ardikabs/gonvoy)\n\nA thin Go framework to write an HTTP Filter extension on Envoy Proxy. It leverages the Envoy [HTTP Golang Filter](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/golang_filter) as its foundation.\n\n## Features\n\n* Full Go experience for building Envoy HTTP Filter extension.\n\n* Porting `net/http` interface experience to extend Envoy Proxy behavior with [HTTP Golang Filter](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/golang_filter).\n\n* Logging with [go-logr](https://github.com/go-logr/logr).\n\n* [Stats](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/observability/statistics#arch-overview-statistics) support; Enabling users to generate their own custom metrics.\n\n* Panic-free support; If a panic does occur, it is ensured that it won't break the user experience, particularly the Envoy proxy processes, as it will be handled in a graceful manner by returning a configurable response, defaults to `500`.\n\n### Compatibility Matrix\n\n| Gonvoy | Envoy Proxy |\n|-----------------|-----------------|\n| v0.3 | v1.29 |\n| v0.4 | v1.30 |\n| [latest](https://github.com/ardikabs/gonvoy) | v1.31 |\n\n## Installation\n\n```bash\ngo get github.com/ardikabs/gonvoy\n```\n\n## Development Guide\n\n### Prerequisites\n\n* Go 1.23 or later. Follow [Golang installation guideline](https://golang.org/doc/install).\n\n### Setup\n\n* Install Git.\n\n* Install Go 1.23.\n\n* Clone the project.\n\n    ```bash\n    git clone -b plugin git@github.com:ardkabs/gonvoy.git\n    ```\n\n* Create a meaningful branch\n\n    ```bash\n    git checkout -b \u003cyour-meaningful-branch\u003e\n    ```\n\n* Test your changes.\n\n    ```bash\n    make test\n    ```\n\n* We highly recommend instead of only run test, please also do audit which include formatting, linting, vetting, and testing.\n\n    ```bash\n    make audit\n    ```\n\n* Add, commit, and push changes to repository\n\n    ```bash\n    git add .\n    git commit -s -m \"\u003cconventional commit style\u003e\"\n    git push origin \u003cyour-meaningful-branch\u003e\n    ```\n\n    For writing commit message, please use [conventionalcommits](https://www.conventionalcommits.org/en/v1.0.0/) as a reference.\n\n* Create a Pull Request (PR). In your PR's description, please explain the goal of the PR and its changes.\n\n### Testing\n\n#### Unit Test\n\n```bash\nmake test\n```\n\n### Try It\n\nTo try this framework in action, heads to [example](./example) directory.\n\n## License\n\n[MIT](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fardikabs%2Fgonvoy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fardikabs%2Fgonvoy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fardikabs%2Fgonvoy/lists"}