npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

curl-to-fetch

1.2.1

@hemanth

npmHomeRepoSnykSocket
Downloads:48
$ npm install curl-to-fetch
DailyWeeklyMonthlyYearly

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