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);
}
}