JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 26
  • Score
    100M100P100Q56874F
  • License MIT

Convert SAZ file (from Fiddler) to HAR file

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

Convert SAZ file (from Fiddler) to HAR file.

Install

$ npm install saz2har

API

var saz2har = require("saz2har");

saz2har.convert("tmp/log.saz", function (err, data) {
    if (err) {
        console.error("Error: ", err);

        return;
    }

    console.log(data);
});

License

MIT