Show HN: Wu – a tiny utility written in Go for running command on file changes
1–7 of 7 posts
Re: Show HN: Wu – a tiny utility written in Go for running command on file changes
#2After searched and reviewed some similar solutions like that of Gulp and Grunt (many solutions are from NodeJS community), I think writing a universal command line tool with Go might be cool.
The advantages of this command is that it does not need any external dependencies and the precompiled binary can run directly on linux and macOS. It is useful not only for running dev server with `go run server.go` or `python server.py` but also when you want to rebuild your go project after any changes of source code. It is designed to be extremely simple and I have already been enjoying it during the development of itself!
Although it is lack of unit tests yet, I think it might be good for you to try it out now :)
Re: Show HN: Wu – a tiny utility written in Go for running command on file changes
#3I write it because many of Go's web server are very lightweight so that they do not have the auto reloading function. It will be more convenient that we have a tool to stop the old process and start a new one after we saved some source code. After searched and reviewed some similar solutions like that of Gulp and Grunt (many solutions are from NodeJS community), I think writing a universal command line tool with Go m…
Re: Show HN: Wu – a tiny utility written in Go for running command on file changes
#4I write it because many of Go's web server are very lightweight so that they do not have the auto reloading function. It will be more convenient that we have a tool to stop the old process and start a new one after we saved some source code. After searched and reviewed some similar solutions like that of Gulp and Grunt (many solutions are from NodeJS community), I think writing a universal command line tool with Go m…
Wu looks nice and simple. Did you know https://github.com/cortesi/modd when you started work on Wu?
Re: Show HN: Wu – a tiny utility written in Go for running command on file changes
#5Earlier quoted context omitted.
Wu looks nice and simple. Did you know https://github.com/cortesi/modd when you started work on Wu?
Aha, seems I reinvented a wheel again. But I think the simplicity might be an advantage of wu. modd seems to be too complex for someone to getting started at the first glance.
Re: Show HN: Wu – a tiny utility written in Go for running command on file changes
#6Earlier quoted context omitted.
Wu looks nice and simple. Did you know https://github.com/cortesi/modd when you started work on Wu?
Aha, seems I reinvented a wheel again. But I think the simplicity might be an advantage of wu. modd seems to be too complex for someone to getting started at the first glance.
I've downloaded it given it a shot and now realize I actually like it a lot more than entr because I don't have to have development environment instructions in my Deploy readme, I can commit the .wu.json file. :) Much better to have that in version control.