All Projects → mpangrazzi → redis-subscribe-sse

mpangrazzi / redis-subscribe-sse

Licence: MIT license
Stream Redis "SUBSCRIBE" or "PSUBSCRIBE" events to browsers using HTML5 Server-Sent Events (SSE)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to redis-subscribe-sse

Shotgun
For the times you need more than just a gun.
Stars: ✭ 158 (+251.11%)
Mutual labels:  sse
Selenoid Ui
Graphical user interface for Selenoid project
Stars: ✭ 237 (+426.67%)
Mutual labels:  sse
ternary-logic
Support for ternary logic in SSE, XOP, AVX2 and x86 programs
Stars: ✭ 21 (-53.33%)
Mutual labels:  sse
Lucid
High performance and distributed KV store w/ REST API. 🦀
Stars: ✭ 171 (+280%)
Mutual labels:  sse
Turbo Run Length Encoding
TurboRLE-Fastest Run Length Encoding
Stars: ✭ 212 (+371.11%)
Mutual labels:  sse
Boost.simd
Boost SIMD
Stars: ✭ 238 (+428.89%)
Mutual labels:  sse
Wechat Admin
Wechat Management System
Stars: ✭ 1,716 (+3713.33%)
Mutual labels:  sse
Turbo-Transpose
Transpose: SIMD Integer+Floating Point Compression Filter
Stars: ✭ 50 (+11.11%)
Mutual labels:  sse
Sse Popcount
SIMD (SSE) population count --- http://0x80.pl/articles/sse-popcount.html
Stars: ✭ 226 (+402.22%)
Mutual labels:  sse
Mipp
MIPP is a portable wrapper for SIMD instructions written in C++11. It supports NEON, SSE, AVX and AVX-512.
Stars: ✭ 253 (+462.22%)
Mutual labels:  sse
Server Push Hooks
🔥 React hooks for Socket.io, SEE, WebSockets and more to come
Stars: ✭ 176 (+291.11%)
Mutual labels:  sse
Toys
Storage for my snippets, toy programs, etc.
Stars: ✭ 187 (+315.56%)
Mutual labels:  sse
Php Sse
A simple and efficient library implemented HTML5's server-sent events by PHP, is used to real-time push events from server to client, and easier than Websocket, instead of AJAX request.
Stars: ✭ 237 (+426.67%)
Mutual labels:  sse
Unifrost
Making it easier to push pubsub events directly to the browser.
Stars: ✭ 166 (+268.89%)
Mutual labels:  sse
mu-server
A lightweight modern webserver for Java
Stars: ✭ 31 (-31.11%)
Mutual labels:  sse
Hlslpp
Math library using hlsl syntax with SSE/NEON support
Stars: ✭ 153 (+240%)
Mutual labels:  sse
Sse
Server Sent Events server and client for Golang
Stars: ✭ 238 (+428.89%)
Mutual labels:  sse
distfit
distfit is a python library for probability density fitting.
Stars: ✭ 250 (+455.56%)
Mutual labels:  sse
simd-byte-lookup
SIMDized check which bytes are in a set
Stars: ✭ 23 (-48.89%)
Mutual labels:  sse
Eventsource
A simple Swift client library for the Server Sent Events (SSE)
Stars: ✭ 241 (+435.56%)
Mutual labels:  sse

redis-subscribe-sse

(from) Redis subscribe (to) HTML5 Server-Sent Events

npm version build status coverage

A Readable Stream that transforms messages received over a Redis PUBSUB channel to valid HTML5 Server-Sent Events.

Features:

  • Can listen to one or more Redis PUBSUB channels
  • Can associate Redis channel name to SSE event property, so publish on test channel means listening to test event on client-side
  • Supports both subscribe and psubscribe modes

We also provide examples (backend and frontend) with:

Install

With npm:

npm install redis-subscribe-sse

Use cases

A typical use case is when you want to notify the end of an async task to a client, and you use Redis PUBSUB as a messaging service (which very fast and reliable). Example: a background worker has terminated its work, sends a message over Redis PUBSUB, and you want to forward that on the client side in order to show a notification.

How to use

To obtain a redis-subscribe-sse instance, you have to do:

var subscribe = require('redis-subscribe-sse');
var stream = subscribe({ /* options */ });

// use the stream! (see /examples)

stream available options are:

  • channels (Array, required): list of Redis channels to subscribe.
  • streamOptions: (Object, optional): options passed to underlying Readable stream. Default: {}.
  • host (String, optional): Redis host. Default: 127.0.0.1
  • port (Number, optional): Redis port. Default: 6379
  • password (String, optional): Redis password (if you need AUTH)
  • ioredis: ioredis client options
  • retry (Number, optional): SSE retry property. Usually a client tries to reconnect after 3-4 seconds after losing SSE connection. If you want to change that interval, you can set this property (in ms). Default: 5000.
  • channelsAsEvents: (Boolean, optional): Associate Redis channel names to SSE event property. This way, on client side you can listen to names events instead of generic messages. See examples/koa.js for a detailed example. Default: false.
  • patternSubscribe: (Boolean, optional): Use Redis PSUBSCRIBE instead of SUBSCRIBE. Default: false.
  • transform: (Function, optional): It can be used for doing some message manipulation before pushing it to the stream. Signature is (message, *callback) and it must returns a string (See below).

Message manipulation

Sometimes you need to some manipulations on the received messages before pushing them to the client. For example, you might need to do some encoding/decoding operations.

The transform option is a function with this signature: (message, callback). The callback is optional and if passed it will allow to perform some async message manipulation. Otherwise, it will do a sync message manipulation.

Some examples:

Async message manipulation

In this mode, you have to pass a callback function as the second argument to transform:

let s = subscribe({
  channels: 'transform-test',
  transform: (msg, callback) => {
    setTimeout(() => {
      callback(`${msg} world`)
    }, 100)
  }
})

Sync message manipulation

In this mode, simply return the manipulated message from transform function:

let s = subscribe({
  channels: 'transform-test',
  transform: (msg) => {
    return `${msg} world`
  }
})

Tests

npm test

Debug

This module is built with debug. If you want to see debug messages:

$ DEBUG=redis-subscribe-sse node ./examples/express

Examples

Server side

See /examples folder. You'll find examples using redis-subscribe-sse with:

$ node ./examples/express
$ node ./examples/koa

Client side

On client side, you can listen to SSE events using EventSource API (or a polyfill):

  // NOTE: If you want full cross-browser support,
  //       you may have to use a polyfill

  var source = new EventSource('/stream');

  source.onopen = function() {
    console.log('Connected');
  });

  // if you set `channelsAsEvents: true`:

  source.addEventListener('test-express', function(e) {
    console.log(e.type) // => Redis channel name
    console.log(e.data) // => message
    
    // Here you can show a notification or else
    
  }, false);

  // otherwise:

  source.onmessage = function(e) {
    console.log(e.data); // => message
    
    // Here you can show a notification or else
    
  });

The MIT License (MIT)

Copyright (c) 2016 Michele Pangrazzi <[email protected]>

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].