Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/banziha104/echosample
- Owner: banziha104
- License: mit
- Created: 2018-05-13T11:33:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-11T08:58:47.000Z (about 6 years ago)
- Last Synced: 2023-07-30T11:37:37.052Z (over 1 year ago)
- Topics: docker, echo-framework, golang, nginx
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Echo νλ μμν¬
- μμ‘΄μ± μ£Όμ : dep ensure -add github.com/labstack/echo@^3.1
- κΈ°λ³Έ νμΌ μ€μ ```go
package mainimport (
"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)