Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gilwong00/go-curl

A CLI curl-like tool for making HTTP requests
https://github.com/gilwong00/go-curl

cli curl golang

Last synced: 21 days ago
JSON representation

A CLI curl-like tool for making HTTP requests

Awesome Lists containing this project

README

        

# gocurl

gocurl is a command line curl-like tool for making HTTP requests written in Golang.

# usage

`gocurl [flags] `

with flags as follows:

- `-H` headers to be sent with the request
- `-u` the user agent to be used for requests (defaults to gocurl)
- `-m` specify an HTTP method (allowed: GET, PUT, POST, PATCH, DELETE, defaults to GET)
- `-k` allows insecure server connections over HTTPS (defaults to false).
- `-v` enable verbose logging. Displays all headers and the body (defaults to false).