今日來研究server的應用,本文採用golang的web framework :GIN
依據官方教學
首先要進行套件的安裝
如果使用VS code 請開啟終端機執行下列指令:
import "github.com/gin-gonic/gin"
註:如果無法安裝可能缺少Git套件,安裝後即可正常執行。
完成後執行下列程式,
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
func main() {
router := gin.Default()
// Define a route for the root URL
router.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "Hello, World!")
})
router.Run() // listen and serve on 0.0.0.0:8080 (for windows "localhost:8080")
}
執行程式輸入網址:http://localhost:8080/
即可看到下列結果。
Hello, World!