Package Exports
- saz2har
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (saz2har) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
saz2har
Converts SAZ file (from Fiddler) to HAR file.
Install
$ npm install -g saz2harAPI
convert(input[, output][, options][, callback])
input- path to the input SAZ fileoutput- path to the output HAR fileoptions- object with conversion optionsvalidate- enables validation of HAR output (default:true)write- write HAR output (default:false)
callback- callback function
var saz2har = require("saz2har");
saz2har.convert("foo.saz", {
validate: false
}, function (err, data) {
if (err) {
console.error("Error: ", err);
return;
}
console.log(data);
});Bin
$ saz2har --help
Usage: saz2har [options] input.saz [output.har]
Options:
--help Show help [boolean]
--version Show version [boolean]
--no-validate Validate the output HAR file (default: true) [boolean]
Examples:
saz2har foo.saz bar.har --no-validateLicense
MIT