Questions tagged [socketcluster]

SocketCluster is an open source realtime WebSocket framework powered by Node.js. With both direct client-server communication (like Socket.io) and group communication via pub/sub channels. Designed to scale both vertically across multiple CPU cores and horizontally across multiple machines/instances.

SocketCluster is an open source realtime WebSocket framework powered by Node.js and optimized to run on Kubernetes (K8s).

SC supports both direct client-server communication (like Socket.io) and group communication via pub/sub channels.

SC is designed to scale both vertically across multiple CPU cores and horizontally across multiple machines/instances.

SC is optimized to run and autoscale on a K8s cluster.

50 questions
0
votes
1 answer

socketcluster create app error

I am trying to create a socketcluster app. I followed the initial step mentioned on their site and installed socketcluster npm module globally. But when I try creating a socketcluster app, it gives me the following error. Please help! …
Vatsy
  • 41
  • 5
0
votes
1 answer

stubbing a socket client with sinon

i'm trying to stub a socketcluster-client to emit events to the socketserver. i keep getting the below error from sinon TypeError: socket.emit is not a function this is my test-suite import {expect} from 'chai'; import sinon from 'sinon' import io…
Jayaram
  • 6,276
  • 12
  • 42
  • 78
0
votes
1 answer

socketcluster.io deployment on stronloop

Is it proper to deploy an app with socketcluster instead of socket.io on strongloop PM, considering the fact that both socketcluster and strongloop have cluster facilities?
-1
votes
1 answer

Multiple websocket servers on one machine

I have been using socket cluster to setup socket servers. Is there anyway to use multiple socket cluster running on same machine on same port? Ex: App connects to ws://server.com/app-one Another App connects to ws://server.com/app-two
Vish K
  • 127
  • 1
  • 2
  • 11
-1
votes
1 answer

NodeJS and Queue Messaging service

In my node project, I need to have a process that read all the data from a queue and rebroadcast the data in real-time through websockets to all subscribed clients. I was wondering if it was possible to achieve something like that with Redis? I…
user3288840
  • 69
  • 2
  • 7
1 2 3
4