gin
is a simple command line utility for live-reloading Go web applications. Just run gin
in your app directory and your web app will be served with gin
as a proxy. gin
will automatically recompile your code when it detects a change. Your app will be restarted the next time it receives an HTTP request.
Installation
go get github.com/codegangsta/gin
Basic usage
gin run main.go