# parse-curl.js **Repository Path**: mirrors_tj/parse-curl.js ## Basic Information - **Project Name**: parse-curl.js - **Description**: Parse curl commands, returning an object representing the request. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # parse-curl.js Parse curl commands, returning an object representing the request. ## Example Input: ``` curl 'http://google.com/' \ -H 'Accept-Encoding: gzip, deflate, sdch' \ -H 'Accept-Language: en-US,en;q=0.8,da;q=0.6' \ -H 'Upgrade-Insecure-Requests: 1' \ -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36' \ -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' \ -H 'Connection: keep-alive' \ --compressed ``` Output: ```json { "method": "GET", "header": { "Accept-Encoding": "gzip, deflate, sdch", "Accept-Language": "en-US,en;q=0.8,da;q=0.6", "Upgrade-Insecure-Requests": "1", "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", "Connection": "keep-alive" }, "url": "http://google.com/" } ``` ## Badges ![](https://img.shields.io/badge/license-MIT-blue.svg) ![](https://img.shields.io/badge/status-stable-green.svg) --- > [tjholowaychuk.com](http://tjholowaychuk.com)  ·  > GitHub [@tj](https://github.com/tj)  ·  > Twitter [@tjholowaychuk](https://twitter.com/tjholowaychuk)