Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gilwong00/go-curl
- Owner: gilwong00
- Created: 2024-07-14T06:44:03.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T03:16:58.000Z (3 months ago)
- Last Synced: 2024-10-01T06:40:59.957Z (about 1 month ago)
- Topics: cli, curl, golang
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).