I was wondering if it is possible to generate cURL
string from a libcurl instance. For example if I'm using the node binding for libcurl as below,
const curl = new Curl();
curl.setOpt(Curl.option.URL, "https://httpbin.org/get");
Is it possible to somehow generate the following from this instance?
curl https://httpbin.org/get