Convert fetch request to curl
This package is verymuch helpfull to developers to find curl and disscuss when ever backend apis fails, we can check all params in single shot.
Use it to generate curl requests with the inputs you would usually use for javascripts fetch. However it does not patch any modules like http-to-curl. It is just a wrapper to generate the curl string. This ensures that there are no side effects with your actual usage of fetch.
Also note that the goal of this library is to be as simple and minimal as possible. This also means that there are zero dependencies :tada:
Installation
yarn add convert-fetch-to-curl
or
npm install convert-fetch-to-curl
Usage
import { convertFetchToCurl } from 'convert-fetch-to-curl';
const { convertFetchToCurl } = require("convert-fetch-to-curl");
const url = 'https://EXMPLE_URL/posts/1';
const options = {
headers: {
Authorization: "BASIC SOMEBASE64STRING"
},
method: 'get'
};
console.log(convertFetchToCurl(url, options));
fetch(url, options);
curl "https://EXMPLE_URL/posts/1" -X GET -H "Authorization: BASIC SOMEBASE64STRING"
console.log(convertFetchToCurl({
url: "https://EXMPLE_URL/posts/1"
headers: {
Authorization: "BASIC SOMEBASE64STRING"
},
method: 'get'
}));
console.log(convertFetchToCurl({
url: "https://EXMPLE_URL/posts/1"
headers: new Headers({
Authorization: "BASIC SOMEBASE64STRING"
}),
method: 'get'
}))