iT邦幫忙

2023 iThome 鐵人賽

0
自我挑戰組

Go語言自學挑戰系列 第 27

第二十八天:Golang Gin 介紹(安裝)

  • 分享至 

  • xImage
  •  

今日來研究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!

參考資料

  1. https://github.com/gin-gonic/gin

上一篇
第二十七天:紀錄Log
下一篇
第二十九天:Golang Gin 介紹(Group routes)
系列文
Go語言自學挑戰29
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言