echo-contrib
echo-contrib copied to clipboard
Echo community contribution
Currently this project includes way too many dependencies as it is a single module. Making all of them a different module would avoid users to pull dependencies that aren't important...
Maybe better to support OpenTracing rather than specific to or has dependency to Jaeger
While I following official session [example](https://echo.labstack.com/middleware/session), it throws this error: `cannot use session.Middleware(sessions.NewCookieStore(([]byte)("secret"))) (type "github.com/labstack/echo/v4".MiddlewareFunc) as type "github.com/labstack/echo".MiddlewareFunc in argument to e.Use` here is the go.mod: ``` module github.com/pyprism/Proj go...
The issue https://github.com/labstack/echo/issues/1127 made a good point about sessions. Why not update session package using 'Before' callback: https://sourcegraph.com/github.com/labstack/echo/-/blob/response.go#L40 so the session writes automatically?
Today I use this package test the function of session, but I found when I firstly enter the website, in that time the request don't have session, but use Sesson.Get...
Hello, I've recently fell in love with echo and thought that it would be great if I can contribute a middleware that I've developed. I couldn't find any guidelines for...
Hi, This useful middleware has helped us! ### Issue Description There are cases where we want to overwrite some buckets values. For example, set buckets value of "request_duration_seconds" greather than...
### Issue Description First of all, I'm new to golang so bear with me. I think that I'm missing something but I have an issue that is driving me crazy....
# Description I tried to create a simple Echo reverse proxy (echo/v4/middleware) which connects to 2 simple Echo services (Hello World), both with the Jaeger middleware connecting to the jaeger/all-in-one...