Socket
Socket
Sign inDemoInstall

nestjs-cron

Package Overview
Dependencies
28
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nestjs-cron

NestJS cron Module


Version published
Weekly downloads
203
decreased by-14.35%
Maintainers
1
Install size
378 kB
Created
Weekly downloads
 

Readme

Source

NestJS cron Module

alt cover

More NestJS libs on alariblog.ru

npm version npm version npm version npm version

NestJS cron package allows you easily setup cron for your controllers or services.

npm i nestjs-cron

To use cron, decorate your class with @Scheduled() and method with @Cron(). Your class has to be a provider or a controller that is declared in any module.

import { Cron, Scheduled } from 'nestjs-cron';

@Injectable()
@Scheduled()
export class MyClass {
	@Cron('* * * * * *')
	async myMethod() {
		//...
	}
}

'* * * * * *' - is a standart cron notation. In this example it will be triggered every second. Additionaly you can use options:

@Cron('* * * * * *', {
	launchOnInit: true,
	sync: true,
})
  • launchOnInit - Launch job one time right after start.
  • delay - Delay before start in ms if launchOnInit is true.
  • sync - Wait for method to finish before launching next tick if your function takes more time then cron.

Cron Intercepter

To intercept cron you can use @CronIntercepter decorator. You pass class that implements CronIntercepterClass as a parameter. It has one intercept method that returns Promise<boolean>.

export class MyIntercepter implements CronIntercepterClass {
	async intercept() {
		return false;
	}
}

Usage example:

@Scheduled()
@Injectable()
export class AppService {
	@CronIntercepter(MyIntercepter)
	@Cron('* * * * * *')
	getHello() {
		console.log('test');
	}
}

If intercept method returns true your cron will run as planned. If false method run will be skipped.

Keywords

FAQs

Last updated on 11 Mar 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc