Fastergoding Save

Go hot reload helper.

Project README

Fastergoding

A gopher tool for faster coding. It can automatically compile and rerun the main.main() function when the files is changed.

Usage

cd {your-project}
go get -u github.com/qinains/fastergoding

then edit the main.go file

package main

import (
	"fmt"
	"log"
	"net/http"

	"github.com/qinains/fastergoding" // add this code
)

func main() {
	fastergoding.Run("-mod", "vendor", "-o", "myServer") // add this code
	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
		fmt.Fprintf(w, "Hello %s!", r.URL.Query().Get("name"))
	})
	err := http.ListenAndServe(":8080", nil)
	if err != nil {
		log.Fatal("ListenAndServe: ", err)
	}
}

Develop

export GOPROXY=https://goproxy.cn #if you live in China
go get -u github.com/qinains/fastergoding

Reference

https://github.com/beego/bee

Open Source Agenda is not affiliated with "Fastergoding" Project. README Source: qinains/fastergoding
Stars
34
Open Issues
2
Last Commit
4 years ago
License

Open Source Agenda Badge

Open Source Agenda Rating