
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.
als-schedule
Advanced tools
Universal task scheduler with support for delay, repetition, timezones, and cron expressions.
A universal task scheduler for Node.js with support for repetition, cron expressions, local time, and time zones.
Precise, flexible, and battle-tested.
npm install als-schedule
import Schedule from 'als-schedule';
const tm = new Schedule();
tm.schedule({
every: 'day',
at: '08:00',
on: 30,
fn: () => console.log('Good morning!')
});
repeat > 0)repeat = -1)day: run daily at a specific timeweek: run on specific weekdaysmonth: run on specific days of the monthcron: arbitrary cron expressionsEurope/Kiev, America/New_York, etc.)tm.schedule({
every: 'day',
at: '08:00',
on: 30,
fn: sendReport
});
tm.schedule({
every: 'week',
days: [1, 4], // 0 = Sunday, 1 = Monday, ..., 6 = Saturday
at: '19:30',
on: Infinity,
fn: backup
});
tm.schedule({
every: 'cron',
expr: '15 10 1,15 * *', // min hour dom mon dow
on: Infinity,
fn: sendSalaryReminder
});
tm.schedule({
every: 'week',
days: [6], // Saturday
at: '22:00',
timezone: 'America/New_York',
on: Infinity,
fn: () => syncDB('us')
});
| Field | Type | Default | Description |
|---|---|---|---|
every | `'day' | 'week' | 'month' |
at | string 'HH:MM' | '00:00' | Local time of day for execution |
days | number[] | All | For week mode: days of week (0 = Sunday, 6 = Saturday) |
expr | string (cron expression) | – | Cron expression (used when every: 'cron') |
on | number or Infinity | 1 | How many times to run the task |
timezone | string (IANA) | 'local' | Timezone name (e.g., 'Europe/Kiev') |
fn | function(task) | – | Task callback (receives the task instance) |
// ESM
import Schedule from 'als-schedule';
// CommonJS
const Schedule = require('als-schedule');
Tested with node:test. Includes both unit and live scheduling integration tests with timeouts and repetitions.
MIT
FAQs
Universal task scheduler with support for delay, repetition, timezones, and cron expressions.
We found that als-schedule demonstrated a healthy version release cadence and project activity because the last version was released less than 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.