Registry / web-framework / labstack-echo-v5

labstack-echo-v5

JSON →
library5.2.1gogounverified

Package echo implements high performance, minimalist Go web framework.

go get github.com/labstack/echo/v5
INSTALL
IMPORT
SIG · LABSTACK-ECHO-V5
L
labstack-echo-v5
web-frameworkgov5.2.1
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/v5

Create a simple HTTP server with Echo v5.

package main import ( "github.com/labstack/echo/v5" "net/http" ) 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

No known issues recorded.

Upgrade
Version history
5.2.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

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