
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@har-sdk/capture
Advanced tools
Fetch requests in HAR format
This module makes a request and captures it as a HAR object. Under the covers it uses request and just passes through all options. Currently only GET requests are supported although other methods will probably work. The request body might not be properly captured though.
It can now be also used in stream mode. This means that it will stream data events containing the body of the response and then at the end event, the HAR object will be accessible.
npm i --save @har-sdk/capture
import { captureHar } from '@har-sdk/capture';
captureHar(
{
url: 'http://www.google.com'
},
{ withContent: false }
).then((har) => {
console.log(JSON.stringify(har, null, 2));
});
requestOptions
The options for making the request, is just passed through to request package. This can accept the url directly.
harOptions
Optional configuration for the resulting HAR object.
withContent
Defaults to true
. Specifies whether the response content object should contain the full body of the response.
maxContentLength
Defaults to Infinity
. Limits the response body to a maximum byte size.
If the response body is larger than the specified limit, the content text won't exist and an error will be returned for this entity with the code MAX_RES_BODY_SIZE
.
FAQs
Fetch requests in HAR format
The npm package @har-sdk/capture receives a total of 107 weekly downloads. As such, @har-sdk/capture popularity was classified as not popular.
We found that @har-sdk/capture demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.