Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@dazn/lambda-powertools-kinesis-client
Advanced tools
Kinesis client wrapper that knows how to forward correlation IDs (captured via @dazn/lambda-powertools-correlation-ids)
Kinesis client wrapper that knows how to forward correlation IDs (captured via @dazn/lambda-powertools-correlation-ids
).
Main features:
auto-injects correlation IDs into Kinesis records when you call putRecord
or putRecords
(only JSON payloads are supported currently)
direct replacement for AWS.Kinesis
client
Install from NPM: npm install @dazn/lambda-powertools-kinesis-client
It's exactly the same as the Kinesis client from the AWS SDK.
const Kinesis = require('@dazn/lambda-powertools-kinesis-client')
const publishEvent = async () => {
const putRecordReq = {
StreamName: 'lambda-powertools-demo',
PartitionKey: uuid(),
Data: JSON.stringify({ message: 'hello kinesis' })
}
await Kinesis.putRecord(putRecordReq).promise()
}
const publishEvents = async () => {
const putRecordsReq = {
StreamName: 'lambda-powertools-demo',
Records: [
{
PartitionKey: uuid(),
Data: JSON.stringify({ message: 'hello kinesis' })
},
{
PartitionKey: uuid(),
Data: JSON.stringify({ message: 'hello lambda-powertools' })
}
]
}
await Kinesis.putRecords(putRecordsReq).promise()
}
FAQs
Kinesis client wrapper that knows how to forward correlation IDs (captured via @dazn/lambda-powertools-correlation-ids)
The npm package @dazn/lambda-powertools-kinesis-client receives a total of 0 weekly downloads. As such, @dazn/lambda-powertools-kinesis-client popularity was classified as not popular.
We found that @dazn/lambda-powertools-kinesis-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
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.