1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00
High performance, minimalist Go web framework https://echo.labstack.com/
Go to file
Vishal Rana b5d6c05101 Fixed #441, #294
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-04-02 14:24:51 -07:00
_fixture Left over 2016-01-28 23:56:09 -08:00
engine Fixed #441, #294 2016-04-02 14:24:51 -07:00
middleware Fixed #441, #294 2016-04-02 14:24:51 -07:00
test Fixed #435 2016-03-28 06:57:31 -07:00
.editorconfig adding editorconfig for happiness 2015-06-23 22:43:07 -07:00
.gitattributes Moved examples to recipes 2015-10-08 20:10:55 -07:00
.gitignore Logger as not an interface 2016-03-06 09:52:32 -08:00
.travis.yml Fixed group middleware 2016-02-20 08:11:02 -08:00
context_test.go Context#StaticContent signature changed 2016-03-27 21:03:35 -07:00
context.go Fixed #441, #294 2016-04-02 14:24:51 -07:00
echo_test.go Fixed #441, #294 2016-04-02 14:24:51 -07:00
echo.go Fixed #441, #294 2016-04-02 14:24:51 -07:00
glide.lock Fixed #441, #294 2016-04-02 14:24:51 -07:00
glide.yaml Fixed #437 2016-04-01 08:51:18 -07:00
group_test.go Fixed #441, #294 2016-04-02 14:24:51 -07:00
group.go Fixed #441, #294 2016-04-02 14:24:51 -07:00
LICENSE Update LICENSE 2015-04-13 17:32:22 -07:00
README.md Fixed #441, #294 2016-04-02 14:24:51 -07:00
router_test.go Fixed #441, #294 2016-04-02 14:24:51 -07:00
router.go Fixed #441, #294 2016-04-02 14:24:51 -07:00

NOTICE

Echo GoDoc License Build Status Coverage Status Join the chat at https://gitter.im/labstack/echo

A fast and unfancy micro web framework for Go.

Features

  • Fast HTTP router which smartly prioritize routes.
  • Run with standard HTTP server or FastHTTP server.
  • Extensible middleware framework.
  • Router groups with nesting.
  • Handy functions to send variety of HTTP responses.
  • Centralized HTTP error handling.
  • Template rendering with any template engine.

Performance

Based on [vishr/go-http-routing-benchmark] (https://github.com/vishr/go-http-routing-benchmark), June 5, 2015.

Performance

Getting Started

Installation

$ go get github.com/labstack/echo/...

Hello, World!

Create main.go

package main

import (
	"net/http"

	"github.com/labstack/echo"
	"github.com/labstack/echo/engine/standard"
	"github.com/labstack/echo/middleware"
)

func main() {
	// Echo instance
	e := echo.New()

	// Middleware
	e.Use(middleware.Logger())
	e.Use(middleware.Recover())

	// Route => handler
	e.Get("/", func(c echo.Context) error {
		return c.String(http.StatusOK, "Hello, World!\n")
	})

	// Start server
	e.Run(standard.New(":1323"))
}

Start server

$ go run main.go

Browse to http://localhost:1323 and you should see Hello, World! on the page.

Next

Need help?

Want to support us?

Contribute

Use issues for everything

  • Report issues
  • Discuss on chat before sending a pull request
  • Suggest new features or enhancements
  • Improve/fix documentation

Credits

License

MIT