
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
A queue / cron manager for beanpole based apps, kinda like cron jobs.
Startup the thyme server:
thyme
In your master server:
var router = require('beanpoll').router(),
loader = require('haba').loader();
loader.require({
daisy: {
remoteName: 'app-master',
transport: {
rabbitmq: 'localhost'
}
}
});
router.on({
'push -hook thyme/ready': function() {
this.from.push('thyme/worker', { channel: 'do/work', queue: 'app-slave' });
},
'push -hook app-slave/ready': function() {
router.push('thyme/enqueue', { queue:'app-slave', channel: 'do/work', data: data.message, sendAt: Date.now() + cron.timeout('* * * * * *') });
}
});
In your slave server (worker):
var router = require('beanpoll').router(),
loader = require('haba').loader(),
cron = require('cron');
loader.require({
daisy: {
remoteName: 'app-slave',
transport: {
rabbitmq: 'localhost'
}
}
});
router.on({
'pull -hook do/work': function(data) {
//re-add the job with NEW data N seconds from now
res.end({ sendAt: Date.now() + 1000, data: 'new data' });
}
});
FAQs
What's this? ------------
We found that thyme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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 Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.