Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/souenzzo/into-curl
- Owner: souenzzo
- License: gpl-3.0
- Created: 2018-07-22T23:56:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-09T01:42:03.000Z (over 6 years ago)
- Last Synced: 2024-04-24T01:43:19.827Z (8 months ago)
- Topics: cli, clj, clojure, curl, debugging-tool, http, logging
- Language: Clojure
- Homepage: https://github.com/souenzzo/into-curl
- Size: 23.4 KB
- Stars: 17
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```