NestJs
yarn add @taskforcesh/nestjs-bullmq-proimport { Module } from '@nestjs/common';
import { BullModule } from '@taskforcesh/nestjs-bullmq-pro';
@Module({
imports: [
BullModule.forRoot({
connection: {
host: 'localhost',
port: 6379,
},
}),
],
})
export class AppModule {}BullModule.registerQueue({
name: 'queueName',
});Processor
Example
Read more:
Last updated
Was this helpful?