1.0.87 • Published 1 year ago

workstack v1.0.87

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Summary

A massively scalable work queue implemented in Node.js (currently in alpha state)

Example Usage

Install

npm install workstack

Start a Router

const { Router } = require("workstack");

var router = new Router({});
router.start();

Start a Worker

const { Worker } = require("workstack");

async function work(data)
{   
    console.log(`${new Date()}: working.`);
    console.log("Data received: ", data);
    console.log(`${new Date()}: done.`);
    
    return (new Date()).toString();

}

(   async()=>
    {   
        var worker = new Worker(
            {   pingInterval: 5000,
                queue: "test-queue",
                work: ()=>{console.log("doing work")}
            });
        worker.start();

    }
)()

Send Work

const { Producer } = require("workstack");

var producer = new Producer({});
producer.enqueue(
    {   queue: "test-queue",
        command: "execWork", 
        data: {vals: ["1", "2"]}
    });

Send Work Synchronously (wait for reply)

const { Producer } = require("workstack");

var producer = new Producer({});

(   
    async()=>
    {   
        var output = await producer.enqueue(
            {   queue: "test-queue",
                command: "execWork", 
                data: {vals: ["1", "2"]}
            }, true);

        console.log(JSON.stringify(output));

    }

)()

Authentication

Currently shared key authentication is available. To enable this, start the tiers (Router, Worker and Producer) with the following additional parameters:

Router

var router = new Router({authMethod: "sharedKey", authKey: "aequooLohkoa3ar2phee4sheeToxo6"});

Worker

var worker = new Worker(
    {   authKey: "aequooLohkoa3ar2phee4sheeToxo6", 
        pingInterval: 30000, queue: "test-queue",
        work: ()=>{console.log("doing work")}
    });

Producer

var producer = new Producer({authKey: "aequooLohkoa3ar2phee4sheeToxo6"});

Encryption

Messages can be encrypted by setting the following parameter during initialization of each component (router, producer, worker):

encrypt: true

For example, to enable encryption for the router:

var router = new Router({encrypt: true});

If encryption is enabled on one of the components, it must then be enabled on all of the components (router, producer, worker).

1.0.87

1 year ago

1.0.84

1 year ago

1.0.86

1 year ago

1.0.85

1 year ago

1.0.77

2 years ago

1.0.76

2 years ago

1.0.75

2 years ago

1.0.79

2 years ago

1.0.78

2 years ago

1.0.80

2 years ago

1.0.82

2 years ago

1.0.81

2 years ago

1.0.73

2 years ago

1.0.74

2 years ago

1.0.19

3 years ago

1.0.18

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.9

3 years ago

1.0.62

3 years ago

1.0.61

3 years ago

1.0.60

3 years ago

1.0.66

3 years ago

1.0.22

3 years ago

1.0.65

3 years ago

1.0.21

3 years ago

1.0.64

3 years ago

1.0.20

3 years ago

1.0.63

3 years ago

1.0.26

3 years ago

1.0.69

3 years ago

1.0.25

3 years ago

1.0.68

3 years ago

1.0.24

3 years ago

1.0.67

3 years ago

1.0.23

3 years ago

1.0.29

3 years ago

1.0.28

3 years ago

1.0.27

3 years ago

1.0.72

3 years ago

1.0.71

3 years ago

1.0.70

3 years ago

1.0.33

3 years ago

1.0.32

3 years ago

1.0.31

3 years ago

1.0.30

3 years ago

1.0.37

3 years ago

1.0.36

3 years ago

1.0.35

3 years ago

1.0.34

3 years ago

1.0.39

3 years ago

1.0.38

3 years ago

1.0.40

3 years ago

1.0.44

3 years ago

1.0.43

3 years ago

1.0.42

3 years ago

1.0.41

3 years ago

1.0.48

3 years ago

1.0.47

3 years ago

1.0.46

3 years ago

1.0.45

3 years ago

1.0.49

3 years ago

1.0.51

3 years ago

1.0.50

3 years ago

1.0.55

3 years ago

1.0.11

3 years ago

1.0.54

3 years ago

1.0.10

3 years ago

1.0.53

3 years ago

1.0.52

3 years ago

1.0.59

3 years ago

1.0.15

3 years ago

1.0.58

3 years ago

1.0.14

3 years ago

1.0.57

3 years ago

1.0.13

3 years ago

1.0.56

3 years ago

1.0.12

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago