saz-parser

0.0.8 • Public • Published

NPM version Build Status Coverage Status Dependency Status Code Climate

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

Readme

Keywords

Package Sidebar

Install

npm i saz-parser

Weekly Downloads

4

Version

0.0.8

License

MIT

Last publish

Collaborators

  • ludoviclefevre