
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
@dazn/lambda-powertools-http-client
Advanced tools
HTTP client that supports forwarding correlation IDs (captured via @dazn/lambda-powertools-correlation-ids) and auto-records metrics
HTTP client that automatically forwards correlation IDs (captured via @dazn/lambda-powertools-correlation-ids
), and follows DAZN's convention around recording metrics around integration points.
Main features:
auto-forwards any correlation IDs captured with the @dazn/lambda-powertools-correlation-ids
package as HTTP headers
auto-record custom metrics using the @dazn/datadog-metrics
package, which defaults to async mode (i.e. writing to stdout
in DogStatsD format) but can be configured via the DATADOG_METRICS_MODE
environment variable
custom metrics include:
{hostName}.response.latency
[histogram
]: e.g. google.com.response.latency
{hostName}.response.{statusCode}
[count
]: e.g. google.com.response.200
metric names can be overriden with the metricName
option (see below for details)
all custom metrics include the tags awsRegion
, functionName
, functionVersion
, method
(e.g. POST
) and path
(e.g. /v1/signin
)
you can add additional tags by passing them in via the metricTags
option (see below for details)
supports timeout
Install from NPM: npm install @dazn/lambda-powertools-http-client
Basic usage looks like this:
const HTTP = require('@dazn/lambda-powertools-http-client')
const sayIt = async () => {
const httpRequest = {
uri: `https://example.com/dev/say`,
method: 'post',
body: { message: 'hello world' }
}
await HTTP(httpRequest)
}
It's essentially a function that accepts a request of type:
{
uri/url : string (either uri or url must be specified)
method : GET (default) | POST | PUT | HEAD | DELETE | PATCH
headers : object
qs : object
body : object
metricName [optional] : string // override the default metric name, e.g. 'adyenApi', which changes metrics to 'adyenapi.latency' and 'adyenapi.202'
metricTags [optional] : string [] // additional tags for metrics, e.g. ['request_type:submit', 'load_test']
timeout [optional] : int (millis)
}
FAQs
HTTP client that supports forwarding correlation IDs (captured via @dazn/lambda-powertools-correlation-ids) and auto-records metrics
The npm package @dazn/lambda-powertools-http-client receives a total of 174 weekly downloads. As such, @dazn/lambda-powertools-http-client popularity was classified as not popular.
We found that @dazn/lambda-powertools-http-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.