Socket
Socket
Sign inDemoInstall

@condenast/seawasp-bull-queue

Package Overview
Dependencies
454
Maintainers
530
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @condenast/seawasp-bull-queue

Seawasp Bull queue component


Version published
Maintainers
530
Install size
8.86 MB
Created

Readme

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

FAQs

Last updated on 27 Oct 2022

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