Registry / web-framework / labstack-echo

labstack-echo

JSON →
library3.3.10+incompatiblegogounverified

Package echo implements high performance, minimalist Go web framework.

go get github.com/labstack/echo
INSTALL
IMPORT
SIG · LABSTACK-ECHO
L
labstack-echo
web-frameworkgov3.3.10+incompatible
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

echo
github.com/labstack/echo

Minimal Echo web server

package main import ( "net/http" "github.com/labstack/echo" ) func main() { e := echo.New() e.GET("/", func(c echo.Context) error { return c.String(http.StatusOK, "Hello, World!") }) e.Start(":8080") }
Debug
Known issues
breakingVersion 3.x uses a different API than v4; v3 is no longer actively maintained.
fix
Upgrade to v4 (github.com/labstack/echo/v4) for latest features and security fixes.
affects: 3.x
Upgrade
Version history
3.3.10+incompatiblelatest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
labstack-echo — go get labstack-echo · libregistry