小编给大家分享一下golang中如何使用air自动重载代码,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
Air能够实时监听项目的代码,在代码发生更变之后自动重新编译并执行
安装Air(windows)
https://github.com/cosmtrek/air/releasesair.exe
curl -fLo air.exe https://git.io/windows_air
air -v
使用并测试Air
air
运行如下代码:
package mainimport ( "fmt" "net/http")func handlerFunc(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "<h2>Air自动重载<h2>")}func main(){ http.HandleFunc("/", handlerFunc) http.ListenAndServe(":3030", nil)}
浏览器中访问localhost:3030/ 显示
修改代码
package mainimport ( "fmt" "net/http")func handlerFunc(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "<h2>Air自动重载<h2>")}func main(){ http.HandleFunc("/", handlerFunc) http.ListenAndServe(":3000", nil)}
分别访问localhost:3030/ 、 localhost:3000/ ,效果如下:
代码版本
使用命令查看文件状态:
$ git status
tmptmp
.gitignoretmp.gitignore
此时,我们再使用命令查看文件状态就能发现,tmp目录被排除在外:
以上是“golang中如何使用air自动重载代码”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!