saz-parser
v0.0.8
Published
SAZ File parser
Downloads
13
Readme
NodeJS Fiddler SAZ File Parser Package
Install
$ npm install saz-parser
Usage
var sazParser = require('saz-parser');
sazParser('SAZ File Path', function(err, sessions) {
...
});
// parsed object (ie. second argument in callback method) structure:
{
"sessionId1": {
"request": {
"headers": {
"accept": "application/json",
...
},
"content": "..."
},
"response": {
"headers": {
"accept": "application/json",
...
},
"content": "..."
}
},
...
}
License
MIT © Ludovic LEFEVRE