The socket.io tag has no wiki summary.
54
votes
3answers
2k views
Socket.IO issue with control chars
I am implementing an application that uses websockets and a console accessed via Telnet. There is a communication between the connection established via websockets and the console. I am experiencing a ...
34
votes
3answers
7k views
Faye vs. Socket.IO (and Juggernaut)
Socket.IO seems to be the most popular and active WebSocket emulation library. Juggernaut uses it to create a complete pub/sub system.
Faye is also popular and active, and has its own javascript ...
26
votes
1answer
2k views
Memory Leak with socket.io + node.js
I appear to have a memory leak with my node application. I built it quickly, and my JavaScript isn't too strong, so this might be easy.
I've done some heap dumps on it, and it's the String 'object'? ...
23
votes
2answers
8k views
Socket.IO Authentication
I am trying to use Socket.IO in Node.js, and am trying to allow the server to give an identity to each of the Socket.IO clients. As the socket code is outside the scope of the http server code, it ...
20
votes
1answer
860 views
Chrome & Safari revert to xhr-polling rather than websockets with socket.io
I have a problem with websockets and socket.io. When I try to connect to my node server with socket.io it initially connects using websockets but when reverts to jsonp-polling shortly after.
This is ...
15
votes
6answers
2k views
Can I set up socket.io chat on heroku?
I have a simple socket.io chat application which I've uploaded to one of the new Heroku 'cedar' stacks.
Now I almost have everything working but I've hit one stumbling block. On my localhost, I open ...
15
votes
4answers
2k views
An entire website with node.js and mongodb?
I've build several websites using PHP and mySQL as backend, and believe that I'm fairly familiar with both. However during research for my new website I've come across node.js and mongodb (and ...
13
votes
2answers
4k views
How to reuse redis connection in socket.io?
Here is my code using socket.io as WebSocket and backend with pub/sub redis.
var io = io.listen(server),
buffer = [];
var redis = require("redis");
var subscribe = redis.createClient(); ...
12
votes
1answer
703 views
Socket.io: How to handle closing connections?
I'm trying to understand which are the "physical" limits of my application.
On the client side:
var socket = io.connect("http://127.0.0.1:6701");
socket.on('connect', function() {
...
12
votes
5answers
3k views
force client disconnect from server with socket.io and nodejs
Is there any way to disconnect a client with SocketIO, and literally close the connection? So if someone is connected to my server, and I want to close the connection between them and my server, how ...
12
votes
4answers
3k views
Socket.IO Client Library in Python
Can anyone recommend a Socket.IO client library for Python?
I've had a look around, but the only ones I can find are either server implementations, or depend on a framework such as Twisted.
I need a ...
11
votes
4answers
1k views
What is the disadvantage of using websocket/socket.io where ajax will do?
Similar questions have been asked before and they all reached the conclusion that AJAX will not become obsolete. But in what ways is ajax better than websockets?
With socket.io, it's easy to fall ...
10
votes
4answers
3k views
socket.io: get client's IP address
Short and simple - when using socket.io in a node.js server, is there an easy way to get the ip address for an incoming connection? I know you can get it for a standard HTTP connection (see ...
10
votes
2answers
2k views
How can I scale socket.io?
Let's say a server gets 10,000 concurrent connections (via socket.io). That's a lot, and if it can't handle any more, I need to spin up another server.
How can I sync the two servers together with ...
9
votes
5answers
8k views
socket.io with express
i have a project and I'm using socket.io with express ,
so what i need (i tried) is broadcasting a message but from an express action.
is this possible i don't know how to get a reference to send or ...
8
votes
4answers
341 views
How to access session in express, outside of the req?
I know that I can use
function(req, res) {
req.session
}
using express. However I need to access the session outside of the response function. How would I go about doing that?
I'm using ...
8
votes
3answers
3k views
Java socket.io client
Is there any Socket.IO-client available for Java?
So far I have only found the official Socket.IO client which is only available for JavaScript and socket.io-java which is only the server.
7
votes
2answers
286 views
How to stream MP3 data via WebSockets with node.js and socket.io?
I have problems streaming MP3 data via WebSocket with node.js and socket.io. Everything seems to work but decodeAudioData doesn't play fair with me.
This is my toy server:
var app = ...
7
votes
3answers
288 views
Realtime web libraries - replace hookbox with socket.io or what?
I've got a couple projects that were built using hookbox to manage real-time message passing between web clients and servers. Hookbox was great -- it totally abstracted the transport layer, exposing ...
7
votes
1answer
206 views
Websockets vs. WiFi - driver issue
I am using Node and Socket.io to stream a processed stream of data from various external sensors (accelerometers, gyros etc) connected to an IGEP board (similar to Beagleboard) to a number of clients ...
6
votes
2answers
1k views
how to list rooms on socket.io nodejs server
after progress on the question how to create socket.io multicast groups, I found making rooms a great way to do what I needed.
However, it would be great to know about all the rooms, without an extra ...
6
votes
2answers
2k views
Multiplayer HTML5, Node.js, Socket.IO
I trying create simple Multi-player with HTML5 Canvas, JavaScript(too using John Resig simple Inheritance library) and Node.js with Socket.IO.
My client code:
var canvas = ...
6
votes
2answers
791 views
How can I benchmark a websocket-based Node.js application?
I am testing the scalability of a websockets application I wrote using socket.io and Node.js. I want to stress test and benchmark the performance. What are some tools I can use?
So far I've looked ...
6
votes
2answers
1k views
SocketIO + Node - Recovering Lost Connections
Im using socketio/node, to pump out some funky stats to the browser, all standard stuff. I am using the latest versions of both libraries. Now, i am having a couple of issues with this:
1) Warning ...
5
votes
1answer
327 views
Node.js + Socket IO + Apache + PHP remove port from url?
I have a few questions regarding using socket IO with PHP and such, I am new to nodejs/socket io so I know very little, I have just started using it over the past few days and I'm getting to the point ...
5
votes
2answers
553 views
Using broadcasting to update all clients using socket.io
Is it possible to force all clients to update using socket.io? I've tried the following, but it doesn't seem to update other clients when a new client connects:
Serverside JavaScript:
I'm attempting ...
5
votes
0answers
452 views
App architecture: Node.js, Socket.io and MongoDB [closed]
I recently competed in the Node Knockout and after the contest realized that my (unfinished) app had completely wrong architecture.
I am new to the Node world in general, about a month and a half of ...
5
votes
1answer
1k views
socket.io remove debug mode
I would like remove the debug frame mode.
I use express,redis,io.socket and connect-redis
I do not know where it comes from
someone has an idea?
5
votes
1answer
2k views
node.js, socket.io with SSL
I'm trying to get socket.io running with my SSL certificate however, it will not connect.
I based my code off the chat example:
var https = require('https');
var fs = require('fs');
/**
* Bootstrap ...
5
votes
2answers
746 views
Communicating with a socket.io server via c#
Is there a c# client that follows the socket.io protocol? I have a socket.io server that is communicating with a socket.io javascript client via a website, but i also need to connect a c# piece to it ...
5
votes
3answers
551 views
How do I get my Node/Socket.io chat to communicate when it's on a domain?
I have successfully written a very simple real-time chat out of Node JS and Socket.io. It also uses Express, Jade and Stylus - which I want to develop further.
The current code for this is here (this ...
5
votes
1answer
845 views
Websockets, socket.io, nodejs, and security
I am working on a real-time analytics application and am using websockets (through the socket.io library) along with nodejs. There will be no "sensitive" data being sent through the websockets (like ...
5
votes
1answer
280 views
Faking socket.io connection from command line
Once you have in place a failry complex socket.io + node.js setup, how could you make some tests without using the browser? Do you know if is it possible to create node.js clients that use socket.io ...
5
votes
1answer
925 views
Connect / node.js - creating a simple server
I'm trying to get connect / node.js to work together nicely and simply.
I have the following (in coffeescript)
connect = require('connect')
io = require('socket.io')
server = connect.createServer(
...
5
votes
1answer
604 views
Is it possible to use WebSockets or similar with a native Android application?
I have a Node.js app that uses HTTP / REST (using Express.js), and a native Android application that communicates with this. This works fine.
I am now looking at writing a more real-time version, ...
4
votes
2answers
367 views
Communicating between Node.Js and ASP.NET MVC Application
I have an existing complex website built using ASP.NET MVC, including a database backend, data layer, as well as the Web UI layer. Rebuilding this website in another language is not a feasible option.
...
4
votes
1answer
323 views
Node.js Whiteboard App for Team / Educational Collaboration
I'm looking to build/adapt a shared whiteboard app for team and educational collaboration. Draw on a board, write some text, save picture, clear board, etc. We've already got a simple chat system ...
4
votes
4answers
187 views
Best way to manage asynchronous / push communication with web clients on a Spring based Java server
I need to push events to web clients in a cross-browser manner (iPhone, iPad, Android, IE/FF/Chrome/etc.) from a Spring based Java server. I am using backbone.js on the client side.
To my best ...
4
votes
2answers
518 views
Discussion: Chat server via node.js: HTTP or TCP?
I was considering doing a chat server using node.js/socket.io. Should I make it a tcp server or a http server? I'd imagine tcp server would be more efficient, but can you send other stuff to it like ...
4
votes
9answers
3k views
Node.js + Socket.io + Windows 7?
I've been searching everywhere but can't seem to find a solution. Is it possible to install Socket.io on Node.js on Windows 7? If not is there some sort of alternative, or do you know of any future ...
4
votes
2answers
835 views
Websockets and binary data
As far as i know websockets support binary data transfer. Binary support bug is fixed.
So, are there any websocket servers which support binary data transfer? Socket.io seems to miss this ...
4
votes
1answer
1k views
Socket.io client issues (require 'socket.io-client.js' not working)
First of all, I am new to Node.js and socket.io, but it looks really interesting and useful for the web application I am currently looking to write.
I was able to get the basic socket.io server ...
4
votes
2answers
1k views
What is the proper way to manage multiple chat rooms with socket.io?
What is the proper way to manage multiple chat rooms with socket.io?
So on the server there would be something like:
io.sockets.on('connection', function (socket) {
socket.on('message', function ...
4
votes
2answers
2k views
How to use backbone.js with websockets/socket-io/nowjs
I am just getting into backbone.js and am finding progress a little slow. My main problem is working out how to keep my client and server side models in sync using socket-io (technically I am using ...
4
votes
2answers
3k views
Cannot find module 'Socket.IO-node' when trying to run node.js boilerplate project
I'm getting an error when I try to run a project created with the node.js boilerplate project I've installed socket.io using NPM with this command:
npm install socket.io
The error I'm getting is:
...
4
votes
2answers
2k views
Authenticate user for socket.io/nodejs
I have a php login, the user puts in a username/password, it checks the mysql db against the login information. If authenticated a session is created via php and the user can now access the system ...
4
votes
3answers
2k views
socket.io - how to broadcast messages on a namespace?
According to socket.io examples:
To broadcast, simply add a broadcast flag to emit and send method calls. Broadcasting means sending a message to everyone else except for the socket that starts ...
4
votes
1answer
477 views
How to scale gevent-socketio server?
I'm planning to build a realtime service with gevent-socketio (released by Jeffrey Gelens). For some purposes, I need to scale my service with many gevent-socketio servers. I think it can be used as a ...
4
votes
0answers
2k views
Socket.io and Nodejs tutorials [closed]
Possible Duplicate:
Good beginners tutorial to socket.io?
Hello,
there are not many information on www.socket.io, I would study how it works.
Could you advice me some tutorials for ...
4
votes
1answer
767 views
socket.io reconnect example
the socket.io docs says we should implement our own reconnect?
Does anyone have an example of a simple reconnect scheme?
The idea is that if the user reconnects within 20 seconds he should be given ...