1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-12 01:22:21 +02:00

Docs updated

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2015-04-19 22:32:46 -07:00
parent c1d2f78211
commit 3b0254ec67
2 changed files with 6 additions and 7 deletions

View File

@ -4,6 +4,7 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Features
- Fast :rocket: HTTP router which smartly resolves conflicting routes.
- Fast router which smartly resolves conflicting routes.
- Extensible middleware/handler, supports:
- Middleware
- `func(*echo.Context)`
@ -24,8 +25,8 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
- Handy encoding/decoding functions.
- Serve static files, including index.
- Centralized HTTP error handling.
- Customized binder to decode request body to a Go type.
- Customized view render so you can use any templating engine.
- Use a customized function to bind request body to a Go type.
- Register a view render so you can use any HTML templating engine.
## Benchmark

View File

@ -10,7 +10,7 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Features
- Fast HTTP router which smartly resolves conflicting routes.
- Fast router which smartly resolves conflicting routes.
- Extensible middleware/handler, supports:
- Middleware
- `func(*echo.Context)`
@ -31,8 +31,8 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
- Handy encoding/decoding functions.
- Serve static files, including index.
- Centralized HTTP error handling.
- Customized binder to decode request body to a Go type.
- Customized view render so you can use any templating engine.
- Use a customized function to bind request body to a Go type.
- Register a view render so you can use any HTML templating engine.
## Installation
@ -40,8 +40,6 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Examples
[labstack/echo/example](https://github.com/labstack/echo/tree/master/examples)
> Hello, World!
Create ```server.go``` with the following content: