echo 기초
echo.labstack.com/ Echo - High performance, minimalist Go web framework Echo is a high performance, extensible, minimalist web framework for Go (Golang). echo.labstack.com 설치 go get github.com/labstack/echo Hello World middleware, route, handler, listening 등 express를 다뤄보았다면 친숙한 개념들이 등장합니다. (server면 사실 다들 쓰는 거긴 합니다) package main import ( "net/http" "github.com/labstack/echo" ) // Handler func han..