Socket
Socket
Sign inDemoInstall

tsed-bee-queue

Package Overview
Dependencies
213
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tsed-bee-queue

Bee-queue for Ts.ED framework


Version published
Weekly downloads
8
decreased by-55.56%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

tsed-bee-queue

Bee-queue for Ts.ED framework

Goals

This provides Redis-based job queueing services built on top of Bee-queue for use with Ts.ED framework. With some little configurations you can have your web service running as a queue system that handle different jobs as you define.

Installation

npm install tsed-bee-queue tsed-redis redis
// or yarn
yarn add tsed-bee-queue tsed-redis redis

Getting started

Your application code structure could look like this:

.
├── ...
├── src -- TypeScript source
│   ├── controllers
│   ├── models
│   ├── queues -- Add this directory to store all of your jobs
│   │   ├── FooQueue.ts
│   │   ├── BarQueue.ts
│   │   └── index.ts -- Use barrelsby to generate index
│   ├── ...
│   ├── index.ts
│   └── Server.ts
├── package.json
├── tsconfig.json 
├── tsconfig.compile.json 
└── ...

(Optional) Use barrelsby to generate index

Add "./src/queues" to directory in .barrelsby.json

Create your jobs

import {Job} from "bee-queue";
import {Queue, QueueProvider} from "tsed-bee-queue";

@Queue({name: "foo", concurrency: 2})
export class FooQueue implements QueueProvider {

  $exec(job: Job<any>) {
    // do something
    // MUST return Promise
    return Promise.resolve();
  }

  // or with callback
  // $exec(job: Job<any>, done: DoneCallBack<any>) {
  //   // do something then call
  //   done(error, result);
  // }

}

Server configuration

You can do this in different ways, below is an example in Server.ts:

import {Configuration} from "@tsed/di";
import "tsed-redis"; // recommended as it use DI factory for Redis client to avoid creating many connections
import "tsed-bee-queue";
import "./queues"; // required
...

@Configuration({
  ...
  redis: {
    host: "localhost",
    port: 6379,
    ...
  },
  queue: {
    redis: "default", // redis connection
    getEvents: false, // see bee-queue configurations
    ...
  }
})
export class Server {
  ...
}

Usage

To create and send job

import {Controller, Get, Inject} from "@tsed/common";
import {QueueService} from "tsed-bee-queue";

@Controller("/foo")
export class FooController {
  @Inject()
  readonly queueService: QueueService;

  @Inject()
  readonly logger: Logger;

  @Get("/new")
  async index() {
    const queue = this.queueService.get("foo"); // name of the job queue
    await queue.createJob({hello: "world"}).save();
  }
}

This job will be sent to queue and handled by FooQueue. This doesn't have to be in the same application. You can send job from different apps as well.

Queue monitoring

This library also supports monitoring your queues using bee-queue/arena.

Usage

In Server.ts:

import {Configuration} from "@tsed/di";
import "tsed-redis";
import "tsed-bee-queue";
import "./queues";
import {ArenaMiddleware} from "tsed-bee-queue";

...
@Configuration({
  ...
  queue: {
    providers,
    arena: {
      enabled: true,
      basePath: "/arena",
      disableListen: true // to run it on your running server or you can set a different host/port to run another separate server
    }
  }
})
export class Server {
  $afterRoutesInit(): void {
    this.app.all("/arena*", ArenaMiddleware); // route all requests to Arena middleware
  }
}

Todos

  • Ts.ED CLI plugin to have some CLI commands to generate jobs and some other tasks
  • More instructions to use job events

Credits

License

MIT License

Copyright (c) 2021 Alex Do

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 02 Mar 2023

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