Hacker News new | ask | show | jobs
by romuloab42 3779 days ago
I've been using this tool for a month and it's really great. A focused tool that does its job well.

The only caveat I got, and this is completely due to my inexperience with Go, is to not use `daemon: go run foo.go`, but to `prep: go build foo.go; daemon +sigint: ./foo`

Another good use is to restart webpack when a non-hot-replaceable file changes:

  /projects/foo/src/index.js {
      daemon +sigint: npm start
  }