1
0
mirror of https://github.com/labstack/echo.git synced 2025-04-25 12:24:55 +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
README.md
website/docs

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

@ -10,7 +10,7 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Features ## Features
- Fast router which smartly resolves conflicting routes. - Fast HTTP router which smartly resolves conflicting routes.
- Extensible middleware/handler, supports: - Extensible middleware/handler, supports:
- Middleware - Middleware
- `func(*echo.Context)` - `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. - Sub routing with groups.
- Handy encoding/decoding functions. - Handy encoding/decoding functions.
- Serve static files, including index. - 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 ## Installation
@ -37,6 +40,8 @@ Echo is a fast HTTP router (zero memory allocation) and micro web framework in G
## Examples ## Examples
[labstack/echo/example](https://github.com/labstack/echo/tree/master/examples)
> Hello, World! > Hello, World!
Create ```server.go``` with the following content: Create ```server.go``` with the following content:
@ -159,10 +164,10 @@ func main() {
``` ```
## Contribute ## Contribute
- Find bugs - Report issues
- Suggest new features - Suggest new features
- Improve documentation
- Participate in discussion - Participate in discussion
- Improve documentation
## License ## License