Skip to content
High performance, minimalist Go web framework
Go Other
  1. Go 99.9%
  2. Other 0.1%
Branch: master
Clone or download

Latest commit

lammel Fix #1526 trailing slash to any route (#1563)
* refs #1526: Add tests for trailing slash requests with nested any routes

* refs #1526: Handle specual router case with trailing slash for non-root any route

* refs #1526: Fix accidential lookup for any route without trailing slash in request
Latest commit 43e32ba May 7, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github test matrix add go1.14 (#1551) Apr 25, 2020
_fixture Test cased for Echo#Start/Shutdown Sep 25, 2016
middleware use echo.GetPath for rewrite in proxy (#1548) Apr 8, 2020
.editorconfig updated docs Nov 17, 2016
.gitattributes Updated website and examples Jan 17, 2017
.gitignore Fixed build Jun 29, 2017
.travis.yml Fix param value bug (#1467) Jan 1, 2020
LICENSE Update website Jan 10, 2017
Makefile Updated ci Nov 10, 2018
README.md added installation command in guide (#1443) Jan 29, 2020
bind.go Improve bind performance (#1469) Jan 8, 2020
bind_test.go Set maxParam with SetParamNames (#1535) Mar 30, 2020
context.go Set maxParam with SetParamNames (#1535) Mar 30, 2020
context_test.go Set maxParam with SetParamNames (#1535) Mar 30, 2020
echo.go use echo.GetPath for rewrite in proxy (#1548) Apr 8, 2020
echo_test.go Omit `internal=<nil>` in error strings (#1525) Mar 5, 2020
go.mod Bumped version Mar 30, 2020
go.sum Bumped version Mar 30, 2020
group.go Fixed double padding in Group.File, Group.Add (#1534) Apr 25, 2020
group_test.go Fixed double padding in Group.File, Group.Add (#1534) Apr 25, 2020
ip.go Safer/trustable extraction of real ip from request (#1478) Feb 24, 2020
ip_test.go Safer/trustable extraction of real ip from request (#1478) Feb 24, 2020
log.go the logging interface add SetHeader method (#1092) Sep 28, 2018
response.go Fix for #1334 (#1335) May 24, 2019
response_test.go Add test case for Response (#1557) Apr 25, 2020
router.go Fix #1526 trailing slash to any route (#1563) May 6, 2020
router_test.go Fix #1526 trailing slash to any route (#1563) May 6, 2020

README.md

Sourcegraph GoDoc Go Report Card Build Status Codecov Join the chat at https://gitter.im/labstack/echo Forum Twitter License

Supported Go versions

As of version 4.0.0, Echo is available as a Go module. Therefore a Go version capable of understanding /vN suffixed imports is required:

  • 1.9.7+
  • 1.10.3+
  • 1.11+

Any of these versions will allow you to import Echo as github.com/labstack/echo/v4 which is the recommended way of using Echo going forward.

For older versions, please use the latest v3 tag.

Feature Overview

  • Optimized HTTP router which smartly prioritize routes
  • Build robust and scalable RESTful APIs
  • Group APIs
  • Extensible middleware framework
  • Define middleware at root, group or route level
  • Data binding for JSON, XML and form payload
  • Handy functions to send variety of HTTP responses
  • Centralized HTTP error handling
  • Template rendering with any template engine
  • Define your format for the logger
  • Highly customizable
  • Automatic TLS via Let’s Encrypt
  • HTTP/2 support

Benchmarks

Date: 2018/03/15
Source: https://github.com/vishr/web-framework-benchmark
Lower is better!

Guide

Installation

// go get github.com/labstack/echo/{version}
go get github.com/labstack/echo/v4

Example

package main

import (
  "net/http"
  "github.com/labstack/echo/v4"
  "github.com/labstack/echo/v4/middleware"
)

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

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

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

  // Start server
  e.Logger.Fatal(e.Start(":1323"))
}

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

Help

Contribute

Use issues for everything

  • For a small change, just send a PR.
  • For bigger changes open an issue for discussion before sending a PR.
  • PR should have:
    • Test case
    • Documentation
    • Example (If it makes sense)
  • You can also contribute by:
    • Reporting issues
    • Suggesting new features or enhancements
    • Improve/fix documentation

Credits

License

MIT

You can’t perform that action at this time.