socketcluster-client
socketcluster-client copied to clipboard
JavaScript client for SocketCluster
## Problem I've stumbled upon non-flaky but random bug - I have hundreds of similar calls, but only for few of them the bug applies. See below the code snippet...
Hi, i'm developing a game that is using socketcluster for connection to server. So ios devices are getting hot very quickly because of this. After turning off socket connections module...
I am trying to connect to Socket Cluster server in React Native(Android). The connection fails with the log: [SocketProtocolError: Socket hung up] Here is the connect option: { hostname: SOCKET_HOST,...
When sending Date objects, they are serialized into ISO string format, and JSON parse doesn't convert them back. Propose to add option to JSON decode function, for example ```javascript const...
I am using this in an Angular app. After upgrading to Angular 6, I get the following error: > sctransport.js:7 Uncaught ReferenceError: global is not defined > at Object../node_modules/socketcluster-client/lib/sctransport.js (sctransport.js:7)...
I recently setup socket cluster on my openshift docker environment, and i am getting below error **on socketcluster state:** ``` { CompatibilityError: An obsolete SCC component at address 10.128.28.1 is...
Hello John, I need to know Lisk chat developed based on Socket cluster ? Thank you, Kamelia
Hi, We have react native based app. Our server is now HTTPS Enabled. We have also configured the `socketcluster-server` to work with our SSL Certificates. By using the `secure:true` option,...
I'm trying to auth a user and then subscribe a channel using `{waitForAuth: true}`. Here is the client code: ``` var socket = socketCluster.create(options); socket.emit('auth', 'test'); var channel = socket.subscribe('my-channel',...
@jondubois Hey man, if I do this would it cause any issues? I've tested it locally and it works fine. Basically, I'm trying to wrap promises around emit and publish...