mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
f4a5abc8b2
Signed-off-by: Vishal Rana <vr@labstack.com>
1.1 KiB
1.1 KiB
title | menu | ||||||
---|---|---|---|---|---|---|---|
Migrating |
|
Migrating from v1
Change log
- Echo now uses
Engine
interface to abstractHTTP
server implementation, allowing us to use HTTP servers beyond the standard library. It currently supports standard HTTP server and FastHTTP. - Context, Request and Response are converted to interfaces. More...
- Moved API's for serving static files into middleware.
Echo#Index
Echo#Favicon
Echo#Static
Echo#ServeDir
Echo#ServeFile
- Dropped auto wrapping of handler and middleware to enforce compile time check.
- Handler only accepts
Echo#Handler
interface. - Middleware only accepts
Echo#Middleware
interface. Echo#HandlerFunc
adapter to use of ordinary functions as handlers.Echo#MiddlewareFunc
adapter to use of ordinary functions as middleware.- Middleware is run before hitting the router, which doesn't require
Echo#Hook
API as it can be achieved via middleware. - Ability to define middleware at route level.