echo icon indicating copy to clipboard operation
echo copied to clipboard

High performance, minimalist Go web framework

Results 190 echo issues
Sort by recently updated
recently updated
newest added

### Issue Description Different handlers can be executed for the same end point without problems. example: ```go func main() { router := echo.New() group := router.Group("/api") group.GET("/:user", handler1) router.GET("/api/:user", handler2)...

Closes issues #2201 and #1726 What was done: 1. Each node is now splitted into per-method handler with it's own ppath and pnames 2. Test case from #1726 at [router_test.go](https://github.com/labstack/echo/pull/2207/files#diff-06b5e9693dbcea8c23abd4249e8b42aab7cb9affcc5366568e6a34b212c62ff5R824-R845)

Better to upgrade to JWT library v4 which is better than original one. Also, there is a deprecation of `StandardClaims` ` StandardClaims are a structured version of the JWT Claims...

### Discussed in https://github.com/labstack/echo/discussions/2199 Originally posted by **Harish09** June 9, 2022 Using Proxy middleware to proxy requests to a web server to multiple other services. Have configured the transport layer...

1. The Accept-Encoding header parser is more precise. Previously it had been a simple sub-string match, not aware of the possible header grammar. 2. Downstream middleware or handlers will not...

### Issue Description Similar to the JWT middleware which has a [ErrorHandler](https://github.com/labstack/echo/blob/6df1c355c26f7fdfde0ce85265dc7d386638f659/middleware/jwt.go#L30), it would be useful to have a similar thing for the CSRF middleware. Why? Same as JWT, returning...

### Issue Description Right now, Echo makes it easy to write handlers that return JSON - that is, `application/json` - documents. However, it doesn't make it as easy as it...

### Issue Description When using Echo.Reverse() to generate URLs to other handlers, the resulting URL is not correctly encoded. This can mean that the URLs generated are not valid. For...

discussion

### Issue Description Can don't change req.RequestURI in middleware.RemoveTrailingSlash()? My app has a variable url prefix, the url prefix can change by config file. So I add e.Pre(middleware.RemoveTrailingSlash()) my code...