2.Golang 热加载开发
Golang 热加载开发
在开发项目的过程中,如果总是要去重启服务,编译代码,总使一个繁琐的过程。
当然,我们可以利用一些库协助我们热加载开发,不需要重复去重启服务了。
热加载的工具
工具 1(推荐):https://github.com/gravityblast/fresh
go
# 下载依赖库
go get github.com/pilu/fresh
# 使用热加载启动服务
$ fresh
工具 2:https://github.com/codegangsta/gin
go
# 下载依赖库
go get -u github.com/codegangsta/gin
# 使用方法
$ gin run main.go
fresh工具使用示例
下载依赖库
go
go get github.com/pilu/fresh
1695651548723
使用热加载启动服务,出现问题
go
$ fresh
1695651947149
go
PS D:\goProject\go-gin-practice> fresh
fresh : 无法将"fresh"项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。
所在位置 行:1 字符: 1
+ fresh
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (fresh:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS D:\goProject\go-gin-practice>
解决问题
下载 fresh 仓库最新代码
go
# 从github下载最新的代码
git clone https://github.com/gravityblast/fresh.git
# 或者使用码云下载
git clone git@gitee.com:kubernete/fresh.git
安装 fresh
go
# 安装fresh
go install github.com/pilu/fresh@latest
1695652520829
重新回到工程执行 fresh
1695652564650