Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
har-to-json
Advanced tools
Extract response from .har file and create JSON mocks for mock server. With support of query param
Extract response from .har file and create JSON mocks for mock server.
npm install -g har-to-mocks
or by npx
npx har-to-mocks [path to .har] [path mock/api folder] --dry-run
File can contain hundreds of requests so it's important to be able filter data. For filtering you can use flags:
--url
) for filtering by match in the url. Search is case sensitive-m
, --method=GET
) for filter specific method. Default value is 'GET'-t
, --type=xhr
) for filtering request type. Default value is 'xhr'Video example: YouTube har-to-mocks@1.1.1.
example:
$ har-to-mocks ./file.har --url=api/service --method=GET
will display:
Filtered requests:
Name Method Path
─────────────────────── ────── ───────────────────────────
userRoles GET /api/service/userRoles
currentUserId GET /api/service/currentUserId
active GET /api/service/clients/active
If output folder is not specified mocks will not be written.
Export structure is prepared for connect-api-mocker. After successful filtering request just add second argument which will be path to connect-api-mocker
's folder for mock/api.
WARNING: When second argument is defined cli will write files. To avoid unwanted overwrite use --dry-run
flag to skip writing part of process.
example:
$ har-to-mocks ./file.har ./mocks --url=api/service --method=GET --dry-run
will display:
Filtered requests:
Name Method Path
─────────────────────── ────── ───────────────────────────
userRoles GET /api/service/userRoles
currentUserId GET /api/service/currentUserId
active GET /api/service/clients/active
Folder tree which will be applied:
└─ mocks
└─ api
└─ service
├─ userRoles
│ └─ GET.json
├─ currentUserId
│ └─ GET.json
└─ clients
└─ active
└─ GET.json
No files were written. If you want to write files remove the (--dry-run) flag.
FAQs
Extract response from .har file and create JSON mocks for mock server. With support of query param
The npm package har-to-json receives a total of 0 weekly downloads. As such, har-to-json popularity was classified as not popular.
We found that har-to-json demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.