echo
echo copied to clipboard
High performance, minimalist Go web framework
### Issue Description echo server says this in log: echo: http: URL query contains semicolon, which is no longer a supported separator; parts of the query may be stripped when...
This is my middlewares: ``` middleware.Recover(), middleware.TimeoutWithConfig(middleware.TimeoutConfig{ Skipper: func(c echo.Context) bool { return strings.HasPrefix(c.Request().RequestURI, "/debug/pprof/") }, ErrorMessage: "timeout", Timeout: 10 * time.Second, }), ``` after I add timeout middleware, log...
A new tool that uses Echo as part of its core.
### Issue Description [Doc](https://echo.labstack.com/docs/testing) has a Testing section. Examples there only works with public/ unprotected routes/ handlers. In a real-world app, most of the routes are protected. Same for my...
I have added a pre-built templates function to render HTML easily.
### Issue Description ### Checklist - [x] Dependencies installed - [x] No typos - [x] Searched existing issues and docs Hi :D. Is there a way to bind file from...
This pull request enhances the documentation for Echo's Logger middleware. The improvements aim to provide clearer, more comprehensive information for users implementing logging in their Echo applications. Key changes include:...
### Application state This proposal seeks to introduce an Application State Management feature in Echo. This feature will enable the ability to access a store **application wide**. Mmiddlewares and request...
### Issue Description The current documentation for the Logger middleware in the Echo framework is insufficient. It lacks detailed explanations of configuration options and comprehensive examples for various use cases....
This should hopefully bring more clarity into this issue https://github.com/labstack/echo/issues/2619 Examples would explain this better so here's similar to one from discussion ``` func main() { handler := func(c echo.Context)...