Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/souenzzo/into-curl

Print clj-http as a curl.
https://github.com/souenzzo/into-curl

cli clj clojure curl debugging-tool http logging

Last synced: 2 months ago
JSON representation

Print clj-http as a curl.

Awesome Lists containing this project

README

        

# into-curl
Print clj-http as a curl.

## Usage
Latest stable release: `0.2.0`

`lein`/`boot`:
```clojure
[into-curl "0.2.0"]
```
`deps.edn`:
```clojure
into-curl {:mvn/version "0.2.0"}
```
Example:
```clojure
(require [into-curl.core :refer [->curl]])

(->curl {:method "GET" :url "https://github.com/souenzzo/into-curl"})
;; => curl 'https://github.com/souenzzo/into-curl'
```