1.0.1 • Published 5 years ago

axios-curl-middleware v1.0.1

Weekly downloads
8
License
MIT
Repository
-
Last release
5 years ago

Axios Curl Middleware

yarn add axios-curl-middleware

import axios from 'axios';
import axiosCurl from 'axios-curl-middleware';
axiosCurl(axios);

axios.get('https://dog.ceo/api/breeds/image/random?test=123132')
/*

curl -X get -H 'accept: application/json, text/plain, */*' 'http://dog.ceo:80/api/breeds/image/random?test=123132'

*/

axiosCurl(axios, { log })