curl-to-fetch icon indicating copy to clipboard operation
curl-to-fetch copied to clipboard

Parse curl commands and returns `fetch` API equivalent.

curl-to-fetch

Parse curl commands and returns fetch API equivalent.

Example

Input:

curl --cookie 'species=sloth;type=galactic' slothy https://api.sloths.com

Output:

fetch( 
      'https://api.sloths.com', 
      {headers:{"Set-Cookie":"species=sloth;type=galactic"},
      method:'GET'}
     )
     .then(console.log, console.error)

P.S: Supports all the curl flags that parse-curl.js has.

##CLI

$ c2f "curl --cookie 'species=sloth;type=galactic' slothy https://api.sloths.com"
      fetch( 
            https://api.sloths.com, 
            {headers:{"Set-Cookie":"species=sloth;type=galactic"},
            method:'GET'}
           )
           .then(console.log, console.error)

#API


const parse = require('curl-to-fetch');

const fetchCode = parse(`curl 'http://google.com/'`);

console.log(fetchCode);

Badges


h3manth.com  ·  GitHub @hemanth  ·  Twitter @gnumanth