Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aoliveti/curling
Curling is a Go library that converts Go HTTP requests into cURL commands
https://github.com/aoliveti/curling
curl curl-commands go golang http http-requests
Last synced: 22 days ago
JSON representation
Curling is a Go library that converts Go HTTP requests into cURL commands
- Host: GitHub
- URL: https://github.com/aoliveti/curling
- Owner: aoliveti
- License: mit
- Created: 2024-02-28T09:02:13.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-04T21:36:41.000Z (8 months ago)
- Last Synced: 2024-10-01T02:40:15.599Z (about 1 month ago)
- Topics: curl, curl-commands, go, golang, http, http-requests
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# curling
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/aoliveti/curling)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/aoliveti/curling/go.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/aoliveti/curling)](https://pkg.go.dev/github.com/aoliveti/curling)
[![codecov](https://codecov.io/gh/aoliveti/curling/graph/badge.svg?token=3L9FOZMEJH)](https://codecov.io/gh/aoliveti/curling)
[![Go Report Card](https://goreportcard.com/badge/github.com/aoliveti/curling)](https://goreportcard.com/report/github.com/aoliveti/curling)
![GitHub License](https://img.shields.io/github/license/aoliveti/curling)Curling is a Go library that converts [http.Request](https://pkg.go.dev/net/http#Request) objects
into [cURL](https://curl.se/) commands## Install
```sh
go get -u github.com/aoliveti/curling
```## Usage
The following Go code demonstrates how to create a command from an HTTP request object:
```go
package mainimport (
"fmt"
"log"
"net/http""github.com/aoliveti/curling"
)func main() {
req, err := http.NewRequest(http.MethodGet, "https://www.google.com", nil)
if err != nil {
log.Fatal(err)
}
req.Header.Add("If-None-Match", "foo")cmd, err := curling.NewFromRequest(req)
if err != nil {
log.Fatal(err)
}fmt.Println(cmd)
}
``````sh
curl -X 'GET' 'https://www.google.com' -H 'If-None-Match: foo'
```### Options
```go
func NewFromRequest(r *http.Request, opts ...Option) (*Command, error) {
...
}
```When creating a new command, you can provide these options:
| Option | Description |
|---------------------------------|---------------------------------------------------|
| WithLongForm() | Enables the long form for cURL options |
| WithFollowRedirects() | Sets the flag -L, --location |
| WithInsecure() | Sets the flag -k, --insecure |
| WithSilent() | Sets the flag -s, --silent |
| WithCompressed() | Sets the flag --compressed |
| WithMultiLine() | Generates a multiline snippet for unix-like shell |
| WithWindowsMultiLine() | Generates a multiline snippet for Windows shell |
| WithPowerShellMultiLine() | Generates a multiline snippet for PowerShell |
| WithDoubleQuotes() | Uses double quotes to escape characters |
| WithRequestTimeout(seconds int) | Sets the flag -m, --max-time |## License
The library is released under the MIT license. See [LICENSE](LICENSE) file.