Hacker News new | ask | show | jobs
by pimlottc 878 days ago
Have you considered using the HAR file format used by Chrome Dev Rools and others for saving network captures?
1 comments

Only briefly. HAR is extremely verbose, which makes it impractical for storing large amounts of requests and responses. It's also not line based, not designed for easy streaming/filtering (it has header/config fields) and the more "granular structure" (e.g. HTTP headers are separate JSON objects) allows for less freedom in creating malformed requests, which can be desirable when trying to find bugs in web applications.