NodeJS Fiddler SAZ File Parser Package
$ npm install saz-parservar sazParser = require('saz-parser');
sazParser('SAZ File Path', function(err, sessions) {
...
});// sessions callback parameter sample
{
"sessionId1": {
"url": "http://..../",
"method": "GET",
"protocol": "HTTP/1.1",
"request": {
"headers": {
"accept": "application/json",
...
},
"content": "..."
},
"response": {
"headers": {
"accept": "application/json",
...
},
"content": "..."
}
},
...
}MIT © Ludovic LEFEVRE