Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-pm2-events

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pm2-events

EventBus for local and decentralized instances of the both for individual nodejs applications and as parts of pm2

  • 1.3.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

🇺🇦Decentralized instances events

os, nodes npm version Downloads/month Vulnerabilities

Data exchange between services located on decentralized servers, node cluster forks, pm2 instances etc.

The usual mechanism embedded in the process notification

process.on('message', async function (packet) {
    /* do something with packet.data */
})

does not include distributed virtual instances, but locally causes a pm2 instance crash under heavy load.

☕️ buy me a coffee

Install

npm i node-pm2-events

Initialize

const EventBus = require('node-pm2-events');

Using internal events

// internal events
EventBus.on('channelName', (m) => {
    console.log('\tinternal:', m)
})
EventBus.send('channelName', {awesome: 'data'}) // work
EventBus.send('channelName-2', {data: 'awesome'}) // not work - not subscribed

For the examples below - Let's use the configuration example

const Config = {
    redis: {
        host: 'localhost',
        username: "username",
        password: "password",
        keepAlive: true,
        port: 6379
    },
    isDev: true,
}

Try using a free Redis server

Exchange events between different instances

(decentralized or not, pm2 or not - it doesn't matter)

Execute on one server and on some other(s)

  • Because the server that sends the data itself does not receive it

initialize

// execute on one server and on some other(s)
await EventBus.transport
    .initialize(Config.redis)
    .filterByProcessName(false)
    .waitingConnection();
// other server(s) - recivers
EventBus.transport.on('channelName', (message) => {
    console.log('\tcb :', message)
})
// one server - the one sending the data - senders
EventBus.transport.send('channelName', {some: 'object data'});

Use with Fastify websocket

const fastify = require('fastify')({
    logger: {level: Config.isDev ? 'info' : 'warn'},
    trustProxy: true,
});
// Add [fastify web socket plugin](https://github.com/fastify/fastify-websocket)
fastify.register(require('@fastify/websocket'), {
    options: {
        maxPayload: 10000 // bytes
    }
});
fastify.after(async () => {
    await EventBus.transport
        .initialize(Config.redis)
        .filterByProcessName(true)
        .addIgnoredIPAddress('123.45.67.89')
        .waitingConnection();
    router.register(fastify); // register your routes - [https://fastify.dev/docs/latest/Reference/Routes]
});
// ....

Add Festify routes

(About Fastify hooks)

local events will be relayed to your websocket connections and to decentralized servers as well

//...
const routes = [];
// From internal to self sockets and emit to other servers, and his sockets
// From external to self sockets
EventBus.websocket.registerDuplexEvents('channelName');
routes.push({
    method: 'GET',
    url: '/api/websocket/endpoint',
    preHandler: auth, // YOUR Auth Handler method - generate session object with session _id!!!
    handler: (req, reply) => {
        reply.code(404).send(); // or something else for GET response...
    },
    wsHandler: (connection, req) => EventBus.websocket.wsHandler(connection, req)
});

Handle messages from clients sockets

filterByProcessName

// override: handle messages from clients sockets
EventBus.websocket.messagesHandler = (message, session, connection) => {
    // do something with message ...
    // ...
    // send internal broadcast
    EventBus.send('toSomeWebsocketChannelHandler', message);
    // ...
    // or do something and send result
    // ...
    // to the current client (from somewhere else)
    EventBus.websocket.sendTo(session.socket_id, {some: 'data', to: 'client'});
    // or
    connection.socket.send({some: 'data', to: 'client'})

    // send broadcast to all ? (why? but)
    EventBus.websocket.send({some: 'data', to: 'client'});
}

Register handshakes and change decentralised master/main server

There are no replicas - no slaves - only the Primary(Main) and that's it. He has to do something alone, in a decentralized environment of many servers and their variety of services

  • including PM2 or not - it doesn't matter.
Example 1

handshakes

await EventBus.transport.initialize(Config.redis)
    .filterByProcessName(false)
    .handshakes()

onMasterChange

// Somewhere, in the place you need
EventBus.transport.onPrimaryChange((isMain) => {
    console.log('isMain', isMain)
    if (isMain) {
        // Some unique event to be processed by the main server
        EventBus.transport.on('Contract', (ch, msg) => {
            /* Do something with the contract */
        })
    } else {
        EventBus.transport.off('Contract');
    }
})
Example 2
await EventBus.transport.initialize(Config.redis)
    .filterByProcessName(false)
    .onPrimaryChange((isMain) => {
        console.log('isMain', isMain)
        if (isMain) {
            // Some unique event to be processed by the main server
            EventBus.transport.on('Contract', (ch, msg) => {
                /* Do something with the contract */
            })
        } else {
            EventBus.transport.off('Contract');
        }
    })
    .handshakes()
filterByProcessName

filterByProcessName

In the case of using the same Redis server for different projects (different databases, but there will be common alerts), it is better to additionally use filtering by the name of the desired process.

EventBus.transport.filterByProcessName(true)
PM2 processes list
idnamemodestatuscpumemory
...
11ym-apicluster0online0%62.4mb
12ym-apicluster0online0%73.0mb
13my-apicluster0online0%91.3mb
14my-apicluster0online0%99.2mb
...
94api-botcluster2online0%47.7mb

If your decentralized processes have different names, but are a single entity of the microservices ecosystem, turn off filtering by process name:

EventBus.transport.filterByProcessName(false)

Dependencies

Redis

Read more (Recommendation)

nodedotjs

Keywords

FAQs

Package last updated on 09 May 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc