@devtea2025/vero-quibusdam-laudantium-corrupti

1.0.0 • Public • Published

minion-army

Microservice Framework for RabbitMQ Workers

usage

const Army = require('@devtea2025/vero-quibusdam-laudantium-corrupti');
const Joi = require('joi');

// Refer to lib/schema.js to see valid options
const manifest = {
    connection: { // optional, if not provided will default to a rabbit connection to local host
        rabbitUrl: 'amqp://localhost'
    },
    defaults: { // default values that apply for all workers
        exchangeName: 'my-exchange-name'
    },
    workers: [
        {
            handler: (message) => console.log('my job is to log this', message),
            config: { // same config as expected by minions
                name: 'jobs.logging',
                key: 'events.something.happened'
            },
            validate: Joi.object({ // set a joi schema to validate handler input (optional)
                id: Joi.string().required()
            })
        },
        {
            handler: (message) => true,
            config: {
                name: `jobs.trueing`,
                key:  `events.something.happened`
            }
        }
    ]
};

const army = Army(manifest);

army.start(); // if you provide defaults.autoStart = true this is not needed

Readme

Keywords

Package Sidebar

Install

npm i @devtea2025/vero-quibusdam-laudantium-corrupti

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

8.26 kB

Total Files

5

Last publish

Collaborators

  • tranvuchinh5538