rawhttp is a Go package for making HTTP requests in a raw way.
- Forked and adapted from https://github.com/gorilla/http and https://github.com/valyala/fasthttp
- The original idea is inspired by @tomnomnom/rawhttp work
A simple example to get started with rawhttp is available at examples. For documentation, please refer godoc
rawhttp internally uses fastdialer to dial connections and fastdialer has a disk cache for DNS lookups. While using rawhttp .Close()
method should be called at end of the program to remove temporary files created by fastdialer.
rawhttp is distributed under MIT License