har-to-curl
v0.5.0
Published
A CommonJS utility for converting a HAR (HTTP Archive) format JSON object to a cURL command string for use on the command line.
Downloads
236
Readme
HAR to cURL
Written in JavaScript. CommonJS format. Inspired by a Python implementation.
:speech_balloon: Try the web interface.
Install
Use npm:
npm install har-to-curl
Example
var harToCurl = require('har-to-curl');
var myHarString = '{"startedDateTime": "2013-02-21T16:23:17.806Z", "time": 577, "request": { "method": "GET", "url": "http://...';
var myCurlCommand;
// Passing in an object:
var myHarObject = JSON.parse(myHarString);
myCurlCommand = harToCurl(myHarObject);
// Passing in a string - will be JSON.parsed automatically:
myCurlCommand = harToCurl(myHarString);
License
Copyright © 2012 Matthew Caruana Galizia, licensed under an MIT license.