
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@aesop-fables/triginta
Advanced tools
A lightweight framework that wraps the basic infrastructure usages of AWS Lambda (SQS, Kinesis, etc.).
triginta
is a lightweight framework that wraps the basic infrastructure usages of AWS Lambda (SQS, Kinesis, etc.). For APIs, see our API framework
. It aims
to conventionalize logging, error handling, and X-Ray integration.
npm install @aesop-fables/triginta
yarn add @aesop-fables/triginta
The following can be created via the ILambdaFactory
interface:
createSqsLambda
)createS3Lambda
)createKinesisLambda
)We're missing unit tests, logging, error handling, middleware support, and X-Ray integration. This will all come soon - I just wanted to get the basic structure published.
// index.ts
interface MyQueuedMessage {
message: string;
}
class MyLambda implements IHandler<MyQueuedMessage> {
async handle(message: MyQueuedMessage): Promise<void> {
console.log('HELLO, WORLD!');
console.log(JSON.stringify(message, null, 2));
}
}
// obviously you need to register all of your stuff
const container = bootstrap();
// triginta doesn't depend on containr but it abstracts out the creation of your handler
// so that you can easily plug it in (see the `factory` property)
const lambdaFactory = container.get<ILambdaFactory>();
export const handler = lambdaFactory.createSqsLambda<MyLambda>({
factory: () => container.get<MyLambda>('lambda'),
});
FAQs
A lightweight framework that wraps the basic infrastructure usages of AWS Lambda (SQS, Kinesis, etc.).
The npm package @aesop-fables/triginta receives a total of 0 weekly downloads. As such, @aesop-fables/triginta popularity was classified as not popular.
We found that @aesop-fables/triginta demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.