
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Enhanced cron job scheduling with features you didn't know you need! Based on cron: https://www.npmjs.com/package/cron
The following functionality was implemented on top of the cron package:
numParallelExecutions paramter.JOB_STARTED: A job has been startedJOB_STOPPED: A job has been stopppedJOB_EXECUTION_STARTING: The onTick method of a job is about to be executedJOB_EXECUTION_FINISHED: The onTick method of a job finished successfullyJOB_EXECUTION_ERROR: An error occured during the execution of the job's onTick methodREACHED_MAX_PARALLEL_EXECUTIONS: The maximum number of parallel job executions has been reached (the request to start another job execution has been ignored)Installation is straight forward with npm:
npm i uber-cron
const cronJob = new UberCron('simpleJob', {
cronTime: '*/1 * * * * *',
start: true,
logger: null,
onTick: () => console.log(`Job being executed right now!`),
});
setTimeout(() => cronJob.stop(), 3500);
/**
OUTPUT:
root@uber-cron:/app# npm run start
> uber-cron@1.0.0 start /app
> ts-node --project tsconfig.json example/index.ts
Job being executed right now!
Job being executed right now!
Job being executed right now!
*/
The full API documentation can be found here: https://decentro-gmbh.github.io/uber-cron/
FAQs
Enhanced cron job scheduling with features you didn't know you need!
We found that uber-cron 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.