http://github.com/hoisie/web
git clone http://github.com/hoisie/web
然后执行编译安装
cd web && go build
server.go:7:2: cannot find package "golang.org/x/net/websocket" in any of:
/usr/local/go/src/golang.org/x/net/websocket (from $GOROOT)
($GOPATH not set)
bash-3.2# echo $GOPATH
bash-3.2# go get golang.org/x/net/websocket
如果你没有遇到类似的错误信息,可以跳过
(
cannot find package "golang.org/x/net/websocket" in any of:
)bash-3.2# go build
bash-3.2# ls
根据目前的理解,应该是gopath是存放非核心的go lib的,而goroot是关于go以及runtime的目录===先跑一个demo看看
package main
import (
"github.com/hoisie/web"
)
func hello(val string) string { return "hello " + val }
func main() {
web.Get("/(.*)", hello)
web.Run("0.0.0.0:9999")
}
我感觉这段两次的介绍在开发架构、运维架构、技术架构、团队能力模型、业务转型等方面进行了非常好的整体的重新规划和定义,客户导向、端到端的微观数字化管理、迭代演进等理念都非常先进正确。
go run hello.go
"
hello.go:4:5: cannot find package "github.com/hoisie/web" in any of:
/usr/local/go/src/github.com/hoisie/web (from $GOROOT)
"
go get github.com/hoisie/web
gopath的目录下会增加文件
通过 go get获取library 上图即获取的lib
func main() {
web.Get("/(.*)", hello)
web.Run("0.0.0.0:9999")
}
http://localhost:9999/third
这个third就会作为参数 hello函数的,而web.Get("/(.*)", hello),表示任何format 的url 多是由hello处理
有疑问加站长微信联系(非本文作者)