Go
Chris_Wang1
这是我的开源项目-- https://github.com/selectgithub
展开
-
Go实现HTTP服务 简练的不得了
使用Go语言实现一个简单的 HTTP 服务器只需要几行代码,如下所示 package main import ( "net/http" ) func main() { http.Handle("/", http.FileServer(http.Dir("."))) http.ListenAndServe(":8080", nil) } 把这个源码保存为 main.go,然后在命令行执行 $ go run main.go 在浏览器里输入http://127.0.0.1:80原创 2021-11-02 15:51:14 · 257 阅读 · 0 评论 -
VSCode Go 环境
先在终端执行 go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.io,direct 来创建代理。 然后重新打开VSCode,Install All 之后, Tools environment: GOPATH=/Users/chris/go Installing 10 tools at /Users/chris/go/bin in module mode. gopkgs go-outline gotests gomodif原创 2021-11-02 15:27:13 · 185 阅读 · 0 评论