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
}
});
- 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)