nodeboot-starter-scheduler

Installation
SKILL.md

@nodeboot/starter-scheduler

Use this starter for periodic background work inside the app process. @EnableScheduling() activates the scheduler feature, and @Scheduler("cron") marks the methods that should run.

Enable

@EnableScheduling()
@NodeBootApplication()
export class SampleApp implements NodeBootApp {
    start(): Promise<NodeBootAppView> {
        return NodeBoot.run(ExpressServer);
    }
}

Minimal job

Installs
1
GitHub Stars
10
First Seen
Aug 11, 2026
nodeboot-starter-scheduler — nodejs-boot/node-boot