{"id":23298896,"url":"https://github.com/dnafication/saz2jmx","last_synced_at":"2025-07-27T14:44:55.011Z","repository":{"id":51932311,"uuid":"189366077","full_name":"dnafication/saz2jmx","owner":"dnafication","description":"A utility to convert fiddler capture (saz) to jmeter script (jmx)","archived":false,"fork":false,"pushed_at":"2021-05-08T23:49:07.000Z","size":576,"stargazers_count":2,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-28T19:06:30.952Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dnafication.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-30T07:22:07.000Z","updated_at":"2022-10-26T07:58:24.000Z","dependencies_parsed_at":"2022-08-23T18:40:51.411Z","dependency_job_id":null,"html_url":"https://github.com/dnafication/saz2jmx","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/dnafication/saz2jmx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnafication%2Fsaz2jmx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnafication%2Fsaz2jmx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnafication%2Fsaz2jmx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnafication%2Fsaz2jmx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dnafication","download_url":"https://codeload.github.com/dnafication/saz2jmx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dnafication%2Fsaz2jmx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267372403,"owners_count":24076762,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-20T08:13:07.152Z","updated_at":"2025-07-27T14:44:54.951Z","avatar_url":"https://github.com/dnafication.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![logo](saz2jmx.png)\n\n# saz2jmx\nA utility to convert fiddler capture archive (saz) to jmeter script (jmx). It exports the jmx with good defaults and boilerplate.\n\n\n## Motivation\nAs a Performance tester (or \"http hacker\") we quite regularly play with tools like [Fiddler](https://www.telerik.com/fiddler) which helps us to log/inspect/edit/save all http(s) traffic between the client and the server. Another favorite tool is [Apache JMeter](https://jmeter.apache.org) which is responsible to generating heavy http/or any kind of traffic and measuring transaction attributes. This tool/js library attempts to bridge the gap between the two by providing users to generate a jmeter script from a fiddler capture archive.\n\n### Alternatives and their pain points\n* [HTTP(S) Test Script Recorder](https://jmeter.apache.org/usermanual/jmeter_proxy_step_by_step.html): JMeter's very own http traffic recorder. The interface is hard to use and does not allow you to save the recorded data (easily 😉)\n* [Blazemeter Chrome Extension](https://www.blazemeter.com/blog/the-new-blazeMeter-chrome-extension-v4-easily-script-jmeter-and-selenium): doesnt save the responses which are very crucial for correlation also some bugs on GET query string conversion.\n\n## Usage\n\nMake sure you have Nodejs and npm installed. [Latest LTS Version: 10.16.0 (includes npm 6.9.0)](https://nodejs.org/en/download/). \n\nThere are multiple options to use this library.\n\n### as a library\n\n1. install the package `npm i saz2jmx`\n2. sample javascript, say `script.js`\n```javascript\nlet saz2jmx = require('saz2jmx');\nsaz2jmx('c:/path/to/imported.saz', 'exports/exported.jmx');\n```\n3. Execute `node script.js`\n\n### as an npm executable\n\nexecute it directly without installing the package\n\n```shell\nnpx saz2jmx -s source.saz -d destination.jmx\n```\n\n### as a global command\n\ninstall the package by running `npm i -g saz2jmx`. Then run the command as shown below.\n\n```shell\nUsage: saz2jmx [options]\n\nexample: saz2jmx -s source.saz -d destination.jmx\n\nOptions:\n  -v, --version                    output the version number\n  -s, --source \u003csource\u003e            source .saz file\n  -d, --destination \u003cdestination\u003e  destination .jmx file\n  -h, --help                       output usage information\n```\nThat's it, really!\n\n## Contributors welcome!\nJust send pull requests with feature/bug description. We can discuss about the approach through comments in [issues page](https://github.com/dnafication/saz2jmx/issues)\n\n## Features/Issues/Bugs?\n[Click here](https://github.com/dnafication/saz2jmx/issues/new) to create new issue.\n\n## TODO\n- ability make samplers configurable (pass in a json maybe?)\n- ability add additional jmeter components\n- create `jmx` from bzt configs (`yml`) (I know its reinventing the wheel! but reinventing in JS, `bzt` is in python)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdnafication%2Fsaz2jmx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdnafication%2Fsaz2jmx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdnafication%2Fsaz2jmx/lists"}