Socket
Socket
Sign inDemoInstall

blockbid-message

Package Overview
Dependencies
24
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    blockbid-message

This library makes it easy to send messages in a distributed network transparent way via various brokers but initially via RabbitMQ.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

RxJS wrapper for messaging systems

This library makes it easy to send messages in a distributed network transparent way via various brokers but initially via RabbitMQ.

Roadmap

At a later point we should have plugins to make it work with various messaging paradigms:

  • AMQP
  • Kafka
  • Communicate locally between threads / workers
  • socket.io (browser/server)
Principles:
  • Declarative over imperative.
  • Functions over classes.
  • Simplicity over complexity.
  • Immutable over mutable.
  • Flexible and composable over fixed heirarchy.
  • Pure over impure.
  • Minmalistic sensible defaults over boilerplate.
  • Idiomatic API's over reinventing the wheel.
Environments
  • Basic framework should work in all V8 environments. eg.
  • Middleware might be environment specific. Eg. blockbid-messages/amqp requires node. blockbid-messages/socketio-browser may require browser objects. (YTBI)
TODO
  • Mock out tests properly
  • Export proper typescript types
  • Revisit blockbid-tools and ensure it supports versioning
  • Implement connection resillience
  • Fix concurrent connection issues
  • Guard for configuration shape
  • Write docs on AMQP middleware

Installation

You can install by referencing a version tag directly off the github repo.

yarn add blockbid/blockbid-message#<semverish>

Framework Usage

import { createConsumer, createProducer } from 'blockbid-message';
import { filter } from 'rxjs/opeerators';

// createProducer accepts a list of middleware
// the message passes top down
// It returns an RxJS Observer that sends messages
const producer = createProducer(
  transformMessageSomehow,
  broadCastsMessagesSomewhere
);

// createConsumer also accepts a list of middleware
// the message also passes top down
// It returns an RxJS Observable that will receive the message
const consumer = createConsumer(
  receivesMessagesFromSomewhere,
  logOrTransformMessage,
  doSomeMoreTransformation
);

// Use RxJS's Observable#next() method to send a message
producer.next({
  content: 'Hello World!',
  route: 'hello'
});

// Note that because consumer is simply an RxJS observable
// you can apply filtering and throttling or do whatever you want to it
const sub = consumer
  .pipe(filter(msg => msg.content.toLowerCase().includes('world')))
  .subscribe(msg => {
    console.log(`Received: ${msg.content}`);
  });

Typescript types

Messages

Generic message objects look like this:

// Generic message
export interface IMessage {
  content: any;
  route?: any;
}

You might use a message by sending it to the next() method of a producer.

producer.next({
  content: 'Hi there!',
  route: 'some-queue'
});
Middleware

Middleware are effectively functions designed to decorate RxJS streams and looks like this:

// Generic Middleware decorates a stream
export type Middleware<T extends IMessage> = (
  a: Observable<T>
) => Observable<T>;

You might use a middleware by passing it as one of the arguments to the createProducer() or createConsumer() functions

import {tap} from 'rxjs/operators';

function logger(stream: Observable<IMessage>) {
  return stream
    .pipe(tap(
      (msg:IMessage) => console.log(`Stream logged: ${msg.content}`
    ));
}

// Pass the middleware in order to the consumer or producer
const consumer = createConsumer(someReceiver, logger);

AMQP Middleware

AMQP Middleware is designed to work in Node environments only due to limitations with the amqplib package it is based on.

Basic Usecase with amqp middleware

import { createConsumer, createProducer } from 'blockbid-message';

import { createAmqpConnector } from 'blockbid-message/amqp';

const { sender, receiver } = createAmqpConnector({
  declarations: {
    // This declares the queue you want to use
    queues: [
      {
        durable: false,
        name: 'hello'
      }
    ]
  },
  uri: 'amqp://user:password@somerabbitserver.io/user'
});

// Here is an RxJS Observer that sends the message
const producer = createProducer(sender());

producer.next({
  content: 'Hello World!',
  route: 'hello'
});

// Here is an RxJS Observable that will receive the message
const consumer = createConsumer(
  receiver({
    noAck: true,
    queue: 'hello'
  })
);

const sub = consumer.subscribe(msg => {
  console.log(`Received: ${msg.content}`);
});

sub.unsubscribe();

Example Usage AMQP Middleware

For usage and examples please look at the basic tests thrown together here

  1. Hello World
  2. Work Queues
  3. PubSub
  4. Routing
  5. Topics

RxJS References

Docs

Videos

NOTE: Using version 6

blockbid-message uses RxJS v6.0 so you need to pipe all your operators:

import { filter } from 'rxjs/operators';

// ...

consumer.pipe(filter(forUserEvents(userId))).subscribe(
  msg => {
    dealWithMessage(msg.content);
  },
  () => {}
);

Other References

FAQs

Last updated on 03 Mar 2019

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