Skip to content

Andrflor/fastergoding

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Go hot reload helper.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%