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 70bf482381 Don't need http.Dir in Context#File'
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-03-29 15:26:25 -07:00
_fixture Left over 2016-01-28 23:56:09 -08:00
engine Added fasthttp header add function 2016-03-29 07:22:46 -07:00
middleware Context#StaticContent signature changed 2016-03-27 21:03:35 -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 Don't need http.Dir in Context#File' 2016-03-29 15:26:25 -07:00
echo_test.go Logging middleware fixes 2016-03-21 17:27:14 -07:00
echo.go Closes #434 2016-03-27 16:29:41 -07:00
glide.lock Added fasthttp header add function 2016-03-29 07:22:46 -07:00
glide.yaml #410, actually timestamp. 2016-03-18 20:02:02 -07:00
group_test.go - Handler and middleware signature changed 2016-02-15 19:32:16 -08:00
group.go more godoc 2016-03-19 15:47:20 -07:00
LICENSE Update LICENSE 2015-04-13 17:32:22 -07:00
README.md Update README.md 2016-03-29 14:05:10 -07:00
router_test.go dummy 2016-03-18 08:47:03 -07:00
router.go more godoc 2016-03-19 15:47:20 -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"
)

// Handler
func hello() echo.HandlerFunc {
	return func(c echo.Context) error {
		return c.String(http.StatusOK, "Hello, World!\n")
	}
}

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

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

	// Routes
	e.Get("/", hello())

	// 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