Skip to content

wnanbei/fastreq

Repository files navigation

fastreq

Fast, convenient and simple HTTP client based on fasthttp for Go (inspired by Fiber and fasthttp)

Features

  • Extreme performance
  • Low memory footprint
  • Middleware support

Installation

go get github.com/wnanbei/fastreq

import "github.com/wnanbei/fastreq"

Usage

import "github.com/wnanbei/fastreq"

resp, err := fastreq.Get("https://hello-world", fastreq.NewArgs())
if err != nil {
    panic(err)
}
fmt.Println(resp.BodyString())

BenchMark

About

Fast, convenient and simple HTTP client based on fasthttp for Go (inspired by Fiber and fasthttp)

Topics

Resources

License

Stars

Watchers

Forks