Golang搭建静态服务器- 两行代码搞定

前端之家收集整理的这篇文章主要介绍了Golang搭建静态服务器- 两行代码搞定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


windows下,新建文件夹D:\webserver\gowww\site

并放入一个静态网站的所有文件






新建go源文件 staticweb.go

// staticweb
package main

import (
	"net/http"
)

func main() {
	http.Handle("/",http.FileServer(http.Dir("D:/webserver/gowww/site/")))
	http.ListenAndServe(":9090",nil)
}

F5运行后, 浏览器访问http://localhost:9090



只需两行代码

go来搭建静态web服务器,就是这么简单,这么有效。

猜你在找的Go相关文章