Giter Club home page Giter Club logo

socket.io-nats's Introduction

socket.io-nats

This adapter enables multiple socket.io instances to broadcast and emit events to and from each other through NATS, based on the socket.io-redis.

Install

npm install socket.io-nats

How to use

var io = require('socket.io')(3000);
var nats = require('socket.io-nats');
io.adapter(nats());

By running socket.io with the socket.io-nats adapter you can run multiple socket.io instances in different processes or servers that can all broadcast and emit events to and from each other.

If you need to emit events to socket.io instances from a non-socket.io process, you should use socket.io-nats-emitter.

API

adapter(opts)

The following options are allowed:

  • key: the name of the key to pub/sub events on as prefix (socket.io)
  • delimiter: optional, channels delimiter
  • nc: optional, the nats client
  • ...: nats client options (ignored if nats client is supplied)

If you decide to supply nc, make sure you use node_nats as a client or one with an equivalent API.

NatsAdapter

The nats adapter instances expose the following properties that a regular Adapter does not

  • uid
  • prefix
  • nc
  • delimiter

Client error handling

Access the nc property of the Nats Adapter instance to subscribe to its error event:

var nats = require('socket.io-nats');
var adapter = nats();
adapter.nats.on('error', function(){});

Custom client (eg: clustered nats)

If you need to create a NatsAdapter to a Nats client instance that has clustered connection

var nats = require('nats');

var servers = ['nats://nats.io:4222', 'nats://nats.io:5222', 'nats://nats.io:6222'];

// Randomly connect to a server in the cluster group.
var nc = nats.connect({'servers': servers});

// currentServer is the URL of the connected server.
console.log("Connected to " + nc.currentServer.host);

var adapter = require('socket.io-nats');

io.adapter(adapter({ nc: nc }));

Protocol

The socket.io-nats adapter broadcasts and receives messages on particularly named Nats channels. For global broadcasts the channel name is:

prefix + '.' + namespace

In broadcasting to a single room the channel name is:

prefix + '.' + namespace + '.' + room
  • prefix: The base channel name. Default value is socket.io. Changed by setting opts.key in adapter(opts) constructor
  • delimiter: The delimiter of channel name. Default value is .. Changed by setting opts.delimiter in adapter(opts) constructor
  • namespace: See https://github.com/socketio/socket.io#namespace.
  • room : Used if targeting a specific room, the room is URL encoded.

License

MIT

socket.io-nats's People

Contributors

efmr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

socket.io-nats's Issues

Update lib to socket.io 2.0.x

While using socket.io-nats with socket.io version 2.0.0 i get this error:

/app/node_modules/socket.io/lib/socket.js:247
  this.adapter.addAll(this.id, rooms, function(err){
               ^
TypeError: this.adapter.addAll is not a function
    at Socket.join (/app/node_modules/socket.io/lib/socket.js:247:16)
    at Socket.onconnect (/app/node_modules/socket.io/lib/socket.js:302:8)
    at /app/node_modules/socket.io/lib/namespace.js:175:16
    at _combinedTickCallback (internal/process/next_tick.js:131:7)
    at process._tickCallback (internal/process/next_tick.js:180:9)

Its seems to be related o socket.io's version, when using it with version 1.4.5 (the same in the dependencies) it works perfectly fine.

This adapter seems to be pretty usefull in order to scale socket.io backends using NATS, it would be great to release a version supporting socket.io 2.0.x versions.

Parsing string message lead to server crash

in nats.js: 66 I can see we'are trying to parse a string, but when the NATS message isn't a stringified JSON format data, an Error will throw since JSON.parse can't parse pure string.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.