go source file monitor, which restarts/rebuilds your go package automatically while you are changing it.
go get -u github.com/c9s/gomon
gomon [dir] -- [cmd]
gomon # watch current directory and build the package (the default behavior)
Monitoring Current Directory And Format Automatically:
gomon -f
Monitoring Current Directory And Build Automatically:
gomon -b
Monitoring Current Directory And Test Automatically:
gomon -t
Monitoring Current Directory And Install Automatically:
gomon -i
You can run commands sequentialy by specifying multiple options above. Monitoring Current Directory And Format, Build, Test and Install Automatically:
gomon -f -b -t -i
Monitoring Directory And Build Automatically:
gomon -b path/to/package
Monitoring Directory And Build Automatically With Verbose Messages:
gomon -b -x path/to/package
Monitoring With Custom Command:
gomon src -- go run -x server.go # execute go run -x server.go
gomon src -- go build -x package # execute go build -x package
- Add configration file support.
- Command queue support.
GoTray http://gotray.extremedev.org/
- Ask Bjørn Hansen
- Yasuhiro Matsumoto (a.k.a mattn)
MIT License