只要在main方法里边,添加
```go
fastergoding.Run()
```
就可以实现自动编译代码,自动更新代码的效果。
传送门:
https://github.com/qinains/fastergoding
之前也是这么想的,但是做成一个独立进程你还要启动fastergoding.exe run,麻烦多。可以弄个环境变量:
```go
if os.Getenv("env") == "dev" {
fastergoding.Run()
}
```
如此入侵也蛮小的。
#6
更多评论