Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@alpha-lambda/tasks
Advanced tools
This is a simple task management library, for use in Lambda, connected to SQS and maybe Kinesis.
First, define tasks:
tasks.js
const tasks = require('@alpha-lambda/tasks');
module.exports = tasks([
{
type: 'foo',
schedule(context, tasks) {
// call SQS, Kinesis, etc.
},
execute(context, tasks, Task) {
// perform the work that the task defines
// Task is provided so you can schedule new sub-tasks if needed
},
validate(task) {
// optional, verify that the task details match some schema you have
},
format(detail) {
// optional, called before validate
},
},
]);
Schedule some tasks:
const Task = require('./tasks');
module.exports.scheduleTasks = async (event, context) => {
// context is passed forward schedule() in each definition
await Task.schedule(context, [
new Task('foo'),
// this would throw, because 'bar' is not defined above
new Task('bar', { foo: true }),
]);
};
Then, in some other code, such as a Lambda hooked up to SQS as an event source:
module.exports.handler = async (event, context) => {
const messages = ...
const tasks = messages.map(message => {
const parsed = JSON.parse(message);
return Task.fromJSON(parsed);
});
await Task.execute(context, tasks);
};
FAQs
simple task framework
The npm package @alpha-lambda/tasks receives a total of 142 weekly downloads. As such, @alpha-lambda/tasks popularity was classified as not popular.
We found that @alpha-lambda/tasks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.