watchrun icon indicating copy to clipboard operation
watchrun copied to clipboard

Watch your files and run your programs.

Results 5 watchrun issues
Sort by recently updated
recently updated
newest added

Currently when starting things with `watchrun go run main.go` and `main.go` contains a server, then `watchrun` doesn't automatically kill the subprocess. Which is not ideal. We can overcome this limitation...

Sometimes it's possible to use fsnotify, which can be much more efficient over polling. Polling does have advantages, because it's more reliable against mounted, remote etc. folders.

When starting some programs using exec.Cmd it will start them as buffering. Which means you don't see the live-output from the program. When you have access to the source, this...

Allow piping files output to file. Possible syntaxes `;>`, `;>>`, `;|`, `;&&`. It needs to be something that is uncommon, but resembles the standard command line. Alternatively, provide a way...

Hi guys. watchrun looks simple and nice so I decided to try it but I noticed that when I running my app it removes all colors from output Before (using...