Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/banziha104/echosample

😎 Go Web Frameworks, Echo
https://github.com/banziha104/echosample

docker echo-framework golang nginx

Last synced: about 1 month ago
JSON representation

😎 Go Web Frameworks, Echo

Awesome Lists containing this project

README

        

# Echo ν”„λ ˆμž„μ›Œν¬

- μ˜μ‘΄μ„± μ£Όμž… : dep ensure -add github.com/labstack/echo@^3.1
- κΈ°λ³Έ 파일 μ„€μ •

```go
package main

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

func main() {
e := echo.New() // 에코 생성
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello World")
})
e.Logger.Fatal(e.Start(":8083")) // 8083 번 포트둜 전솑

}
```

- ### [MySQL 연동](https://github.com/banziha104/EchoSample/blob/master/markdown/Mysql.md)

- ### [MongoDB 연동](https://github.com/banziha104/EchoSample/blob/master/markdown/Mongodb.md)

- ### [λΌμš°ν„°](https://github.com/banziha104/EchoSample/blob/master/markdown/Mongodb.md)

- ### [Golang ORM](https://github.com/banziha104/EchoSample/blob/master/markdown/Gorm.md)

- ### [Request](https://github.com/banziha104/EchoSample/blob/master/markdown/Request.md)

- ### [Response](https://github.com/banziha104/EchoSample/blob/master/markdown/Response.md)

- ### [Error Handling](https://github.com/banziha104/EchoSample/blob/master/markdown/ErrorHandling.md)