1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00

Docs updated

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana 2015-04-19 22:25:53 -07:00
parent 948198e624
commit c1d2f78211
2 changed files with 12 additions and 4 deletions

View File

@ -3,7 +3,7 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Features
- Fast :rocket: router which smartly resolves conflicting routes.
- Fast :rocket: HTTP router which smartly resolves conflicting routes.
- Extensible middleware/handler, supports:
- Middleware
- `func(*echo.Context)`
@ -23,6 +23,9 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
- Sub routing with groups.
- 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.
## Benchmark

View File

@ -10,7 +10,7 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Features
- Fast router which smartly resolves conflicting routes.
- Fast HTTP router which smartly resolves conflicting routes.
- Extensible middleware/handler, supports:
- Middleware
- `func(*echo.Context)`
@ -30,6 +30,9 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
- Sub routing with groups.
- 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.
## Installation
@ -37,6 +40,8 @@ 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:
@ -159,10 +164,10 @@ func main() {
```
## Contribute
- Find bugs
- Report issues
- Suggest new features
- Improve documentation
- Participate in discussion
- Improve documentation
## License