echo icon indicating copy to clipboard operation
echo copied to clipboard

High performance, minimalist Go web framework

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

TL;DR: This fixes an issue where query bindings would not work for slices due to the way browsers would pass them. Consider a struct like this: ```go type Foo struct...

### Issue Description The code below works in echo v4.12.0, but breaks in v4.13.2. Previously, when reading a request body encoded with `multipart/form-data`, multiple values for a single variable name...

### Issue Description Currently, echo depends on golang.org/x/net I believe for its HTTP2 stuffs (?). For tinygo compilations (such as for Cloudflare Workers using the package github.com/syumai/workers, it is currently...

the example code is missing an `errors` package import

### Issue Description Response should implement io.ReaderFrom interface, only when used as a static file server can the sendfile function be used ### Working code to debug ```go // ReadFrom...

I found that echo doesn't have the ability to integrate tracing and metrics by default and there doesn't seem to be a best practice in the documentation on how to...

echo.Static serves files but unsorted. To make them sorted, I've followed the same procedure as was done for [net/http](https://github.com/golang/go/issues/11879) (the fix they did is shown [here](https://github.com/golang/go/commit/25b00177af9f62f683ec68f1d697c2607d087ea6#diff-0661442fffb473f85dc4d4472172edbfb4b9b1837db3ab1a73e838bed3e6ab70R597)).

### Issue Description CreateExtractors method supports split delimiter ```go func CreateExtractors(lookups string,delimiter string) ([]ValuesExtractor, error) { return createExtractors(lookups, "",delimiter) } func createExtractors(lookups string, authScheme string,delimiter string) ([]ValuesExtractor, error) { if...

Please add support for 'Forwarded' header. https://github.com/labstack/echo/blob/master/context.go#L275 here the Scheme method should also support Forwarded header ( https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Forwarded ). This header is for example used by Google in their openid...

## Summary This PR formats `interface{}` -> `any`. `any` is an alias for `interface{}` ```go var any = interface{} ``` https://github.com/golang/go/blob/67f131485541f362c8e932cd254982a8ad2cfc09/src/builtin/builtin.go#L97 ## What was changed - `interface{}` -> `any` -...