{"id":14037272,"url":"https://github.com/azu/har-extractor","last_synced_at":"2025-07-27T05:31:17.251Z","repository":{"id":32612634,"uuid":"138033840","full_name":"azu/har-extractor","owner":"azu","description":"A CLI that extract har file to directory.","archived":false,"fork":false,"pushed_at":"2023-05-28T01:27:26.000Z","size":9121,"stargazers_count":99,"open_issues_count":6,"forks_count":26,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-05-02T00:20:53.609Z","etag":null,"topics":["cli","har","http","node","tool"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azu.png","metadata":{"funding":{"github":"azu"},"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-06-20T13:04:40.000Z","updated_at":"2024-04-23T18:34:32.000Z","dependencies_parsed_at":"2024-01-29T08:09:41.845Z","dependency_job_id":"c01e594e-c8de-46c8-a3bd-a3faaaba55c5","html_url":"https://github.com/azu/har-extractor","commit_stats":{"total_commits":22,"total_committers":4,"mean_commits":5.5,"dds":"0.13636363636363635","last_synced_commit":"ad4b26aa75510612935c2ab42fdaa3b77446c20b"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fhar-extractor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fhar-extractor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fhar-extractor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azu%2Fhar-extractor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azu","download_url":"https://codeload.github.com/azu/har-extractor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227762655,"owners_count":17816058,"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","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":["cli","har","http","node","tool"],"created_at":"2024-08-12T03:02:37.912Z","updated_at":"2024-12-02T16:32:40.881Z","avatar_url":"https://github.com/azu.png","language":"TypeScript","readme":"# har-extractor\n\nA CLI that extract har file to directory.\n\n- [HTTP Archive (HAR) format](https://w3c.github.io/web-performance/specs/HAR/Overview.html \"HTTP Archive (HAR) format\")\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n    npm install har-extractor -g\n    # or\n    npx har-extractor [input]\n\n## Usage\n\n    Usage\n      $ har-extractor \u003charfile\u003e --output /path/to/output\n\n    Options:\n      --output, -o Output directory\n      --remove-query-string, -r Remove query string from file path\n      --dry-run Enable dry run mode\n      --verbose Show processing file path\n\n    Examples\n      $ har-extractor ./net.har --output /path/to/output\n\n## Example\n\nExtract [test/fixtures/en.wikipedia.org.har](test/fixtures/en.wikipedia.org.har) file to directory.\n\n```\nnpx har-extractor ./test/fixtures/en.wikipedia.org.har -o wikipedia\nwikipedia/en.wikipedia.org/wiki/har\nwikipedia/en.wikipedia.org/static/images/project-logos/enwiki-2x.png\nwikipedia/en.wikipedia.org/w/load.php!debug=false\u0026lang=en\u0026modules=ext.cite.styles!ext.uls.interlanguage!ext.visualEditor.desktopA\nwikipedia/en.wikipedia.org/w/load.php!debug=false\u0026lang=en\u0026modules=startup\u0026only=scripts\u0026skin=vector\nwikipedia/en.wikipedia.org/w/load.php!debug=false\u0026lang=en\u0026modules=ext.gadget.charinsert-styles\u0026only=styles\u0026skin=vector\nwikipedia/en.wikipedia.org/w/load.php!debug=false\u0026lang=en\u0026modules=site.styles\u0026only=styles\u0026skin=vector\nwikipedia/en.wikipedia.org/static/images/wikimedia-button-2x.png\nwikipedia/en.wikipedia.org/static/images/poweredby_mediawiki_176x62.png\nwikipedia/en.wikipedia.org/w/load.php!debug=false\u0026lang=en\u0026modules=jquery,mediawiki!mediawiki.legacy.wikibits\u0026only=scripts\u0026skin=ve\nwikipedia/en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg\n```\n\n## References\n\n* [HAR 1.2 Spec | Software is hard](http://www.softwareishard.com/blog/har-12-spec/ \"HAR 1.2 Spec | Software is hard\")\n* [HTTP Archive (HAR) format](https://w3c.github.io/web-performance/specs/HAR/Overview.html \"HTTP Archive (HAR) format\")\n* [micmro/har-format-ts-declaration: TypeScript typing for HAR (HTTP Archive) 1.2](https://github.com/micmro/har-format-ts-declaration \"micmro/har-format-ts-declaration: TypeScript typing for HAR (HTTP Archive) 1.2\")\n\n\n\n## Changelog\n\nSee [Releases page](https://github.com/azu/har-extractor/releases).\n\n## Running tests\n\nInstall devDependencies and Run `npm test`:\n\n    npm i -d \u0026\u0026 npm test\n\n## Contributing\n\nPull requests and stars are always welcome.\n\nFor bugs and feature requests, [please create an issue](https://github.com/azu/har-extractor/issues).\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n## Author\n\n- [github/azu](https://github.com/azu)\n- [twitter/azu_re](https://twitter.com/azu_re)\n\n## License\n\nMIT © azu\n","funding_links":["https://github.com/sponsors/azu"],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazu%2Fhar-extractor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazu%2Fhar-extractor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazu%2Fhar-extractor/lists"}