Skip to content

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

License

Notifications You must be signed in to change notification settings

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