How do I view / replay a chrome network debugger har file saved with content?

debugging, google-chrome, har

Solution

There is an HAR Viewer developed by Jan Odvarko that you can use. You either use the online version at

- http://www.softwareishard.com/har/viewer/ (older version)

- http://gitgrimbo.github.io/harviewer/master/ (up-to-date master branch)

Or download the source-code at https://github.com/janodvarko/harviewer.

EDIT: Chrome 62 DevTools include HAR import functionality. https://developers.google.com/web/updates/2017/08/devtools-release-notes#har-imports

Problem

I love the network debugger, that being said, what programs are out there that let me step forward and backward through multiple 'hars' so I can replay them? if the 'hars' are saved with content, can the replay handle that as well? right now I just read through in textpad, but if I have to present any of my findings a nice 'har player' could greatly help non-technical folk.

Original source