curl-to-fetch

1.2.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i curl-to-fetch

Weekly Downloads

5

Version

1.2.1

License

MIT

Last publish

Collaborators

  • hemanth