fastergoding

package module
v0.0.0-...-1c2c407 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 12, 2023 License: GPL-3.0 Imports: 8 Imported by: 0

README

Fastergoding

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

In this fork, fastergoding also detects if any html file is changed, instead of just detecting changes in go files. This is probably what you need if you are constantly editing a rendered html template.

Usage

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

then edit the main.go file

package main

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

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

func main() {
	// Add this code
	fastergoding.Run() 
	
	// If your main.go is not in root folder, point to the folder from where you run go run
	// So, something like this
	fastergoding.Run("./cmd/api/main/")
	
	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/derpen/fastergoding

Reference

https://github.com/beego/bee

Documentation

Overview

Package fastergoding provides a function to automatically compile and run go code. Example:

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)
	}
}

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Run

func Run(buildArgs ...string)

Run automatically compile and run the main function when the files is changed.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL