gow
TLDR
Run with auto-reload
$ gow run [.]
Run specific file$ gow run [main.go]
Run tests with watching$ gow test [./...]
Build with watching$ gow build
SYNOPSIS
gow command [args]
DESCRIPTION
gow is a file watcher for Go commands. It wraps go commands and re-runs them when source files change, providing automatic rebuilding.
The tool supports go run, test, build and other commands. It watches .go files and triggers re-execution on changes.
gow provides simple go command watching.
PARAMETERS
COMMAND
Go command to run (run, test, build).ARGS
Arguments to pass.--help
Display help information.
CAVEATS
Simple wrapper approach. May miss some file events. Use with development only.
HISTORY
gow was created as a minimal wrapper for watching Go file changes and re-running commands.


