🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@condenast/seawasp-bull-queue

Package Overview
Dependencies
Maintainers
530
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@condenast/seawasp-bull-queue

Seawasp Bull queue component

0.1.4
Source
npm
Version published
Weekly downloads
23
64.29%
Maintainers
530
Weekly downloads
 
Created
Source

queue-bull-component

LoopBack

Installation

Install BullQueueComponent using npm;

$ [npm install | yarn add] queue-bull-component

Basic Use

Configure and load BullQueueComponent in the application constructor as shown below.

import {BullQueueComponent, BullQueueComponentOptions, DEFAULT_QUEUE_BULL_COMPONENT_OPTIONS} from 'queue-bull-component';
// ...
export class MyApplication extends BootMixin(ServiceMixin(RepositoryMixin(RestApplication))) {
  constructor(options: ApplicationConfig = {}) {
    const opts: BullQueueComponentOptions = DEFAULT_QUEUE_BULL_COMPONENT_OPTIONS;
    this.configure(BullQueueComponentBindings.COMPONENT).to(opts);
      // Put the configuration options here
    });
    this.component(BullQueueComponent);
    // ...
  }
  // ...
}

Keywords

loopback-extension

FAQs

Package last updated on 27 Oct 2022

Did you know?

Socket

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