Golang-Echo
Golang-Echo copied to clipboard
Echo is a high-performance web framework for the Go programming language that provides a simple and intuitive API for building web applications and APIs. It is designed to be fast, scalable, and easy...
trafficstars

Golang-Echo
Latest version of Echo supports last four Go major releases and might work with older 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:
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
Benchmarks
Running app
Run this command to start your server
go run main.go
Browse to http://localhost:4000 and you should see Hello, Echo Framework! on the page.