echo icon indicating copy to clipboard operation
echo copied to clipboard

High performance, minimalist Go web framework

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

Warn users with debug enabled that middleware errors are not handled Users may not expect errors thrown in the middleware on the response path flow to be ignored if the...

Provide updated benchmarks for 2022. These should be provided with each release, or yearly. Would like to see benchmarks on routes (radix tree), middleware, and maybe binding. No need to...

help wanted

There are (rare) cases when you would want to bind value from different sources. So this PR allows binders to be chained together to create multi-source binder. This has few...

About V5 Benchmarks

docs

Hello, I've noticed that there's a potential for optimizing certain structs by rearranging their fields. This optimization could notably reduce the padding added by the compiler, ensuring better memory utilization...

## What replaced `interface{}` to `any`. ## Why golang 1.18 support any as type alias for interafce{}. If echo follow golang support policy, the smarter using any than using interface{}....

### Issue Description When using echo for a web application sending HTML and receiving MIMEApplicationForm POST requests, it seems very difficult / impossible to show helpful validation error messages to...

### Issue Description The following code tris to configure CORS per path.However, due to `optionsMethodHandler` ignoring all configured middlewares, a preflight request will receive a bad response which contains no...

### Issue Description ### Checklist - [x] Dependencies installed - [x] No typos - [x] Searched existing issues and docs ### Expected behaviour - If I have static text in...

feature
router

### Issue Description Echo's CORS middleware when TokenLookup is set to `form:` consumes all the request body making impossible for downstream operations to use it. ### Checklist - [x] Dependencies...