Fast, convenient and simple HTTP client based on fasthttp for Go (inspired by Fiber and fasthttp)
- Extreme performance
- Low memory footprint
- Middleware support
go get github.com/wnanbei/fastreq
import "github.com/wnanbei/fastreq"
import "github.com/wnanbei/fastreq"
resp, err := fastreq.Get("https://hello-world", fastreq.NewArgs())
if err != nil {
panic(err)
}
fmt.Println(resp.BodyString())