curl-to-json-cli
v1.0.2
Published
Convert curl to json in command line
Downloads
3
Maintainers
Readme
curl-to-json-cli
Install
npm install -g curl-to-json-cli
Usage
c2j-cli -c "<your-curl>"
Example
c2j-cli -c "curl -X --request GET 'http://localhost:3001/search?search=react&asdfa=asfdaf' \
--header 'xapi-key: 21432139847290402402190' \
--header 'Content-Type: text/html' \
--data-raw '{
"name": "string",
"name2": "string"
}'"
Output
{
method: 'GET',
header: {
'xapi-key': '21432139847290402402190',
'Content-Type': 'text/html'
},
url: 'http://localhost:3001/search?search=react&asdfa=asfdaf',
origin: 'http://localhost:3001',
params: { search: 'react', asdfa: 'asfdaf' },
body: { name: 'string', name2: 'string' }
}