har-report

1.0.0 • Public • Published

Har Report

Travis branch NPM version

Provide reports on website requests/responses via HAR files.

##Install

$ npm install -g har-report

##CLI

$ har-report myharfile.json

##API

var report = require("har-report");

report({
    input: require("myharfile.json"),
    cb: function (err, out) {
    
        if (err) {
            throw err;
        }
        
        console.log(out); // your report is here
    }    
});

Reports

  • Duplicate cookies: This reporter will inform you if any response is setting cookies with the same name multiple times (which can be the source of bugs)

Readme

Keywords

none

Package Sidebar

Install

npm i har-report

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • shakyshane