Socket.IO aims to make realtime apps possible in every browser and mobile device, blurring the differences between the different transport mechanisms. It supports multiple transports, such as WebSockets, Flash sockets, long polling and more, automatically falling back when a transport fails.

learn more… | top users | synonyms

1
vote
0answers
11 views

Tailing a named pipe in node.js

I'm using node-tail to read a file in linux and send it down to a socket. node.js sending data read from a text file var io = require('socket.io'); Tail = require('tail').Tail; tail = new ...
0
votes
0answers
4 views

nginx (1.4.0) + socketio 502 cannot find & keeps switching protocol

Am pretty stuck at this - we've got this socket.io and nginx setup, but it seems that the server just can't run websockets and keeps switching to xhr-polling and jsonp-polling and can't find those ...
1
vote
0answers
14 views

node.js socket.io express live page view counter for each page currently accessed on 1 instance

I'm using working code snippets from Christophe Coenraets and want to elaborate it into creating an array of msg.pageUrl to live view count each accessed page in one node instance Instead of ...
0
votes
0answers
23 views

Basic AI in Node.js/Socket.IO

I'm creating a small game in Node.js/Socket.IO and need some advice on creating the AI. The code I have below is a real quick example I came up with but it's so fast the player doesn't even see the ...
0
votes
0answers
12 views

Support for Websockets on Android

I'm about to start a project for a client that has lots of data that needs to be real-time. There are two mobile apps that I will be building with trigger.io, as well as a web UI, and all of these ...
1
vote
1answer
32 views

Can't broadcast to clients using Socket.IO

My node.js server has an interval setup to call a function called 'spawnItem' every 60 seconds. When this function is called, it executes this piece of code: io.sockets.emit("spawn item", {x: 10, y: ...
0
votes
1answer
41 views

Can I send commands using node.js?

I'm running a node.js server using Terminal (Mac) and want to be able to emit messages to the client via the command line. Is this possible? I could code the messages part of it no problem, it's more ...
1
vote
1answer
20 views

socket.io - optmize the traffic, by sending less characters

I have no experiences with server client communication. I want to send objects to the server and broadcast them to all connected clients. I'm wondering if the connection would speed up a lot , if I ...
0
votes
1answer
22 views

socket.io client hangs up

Using socket.io the client hangs up (page keeps loading) on posting a form - stopping the node server the client runs fine again instantly. Server app.post('/', function(req, res) { ...
0
votes
0answers
28 views

Do I need caching in my node.js app

I am making a simple app in node.js and socket.io. The thing I am aiming for is response speed. User types and on each keypress gets results FAST. Number of records in the database: about 100k to ...
1
vote
3answers
72 views

Stop user's executing JavaScript from console

I've been mucking around creating a little multiplayer game using HTML5 technologies. I used Node.js and Socket.IO to manage server-side business. My problem lies in users being able to enter in ...
-4
votes
0answers
68 views

socket.emit with addEventListener? [closed]

document.getElementById('id').addEventListener("click","function(){ socket.emit('onclick'),{BLINK()}); }","false") function BLINK(){ //some code } is click event given in proper way with ...
0
votes
0answers
24 views

Recommendations for a good Socket.IO book [closed]

Is there a good book that covers SokcetIO and its best practices with clean examples? Having read about the memory leak popping up in production and other instability issues, I would love a book which ...
-2
votes
0answers
31 views

Voice Streaming using Nodejs [closed]

I want to do a live voice chat in my site rooms, in which users can talk and at the same time code in the room. However, I don't know where to start creating my Voice Chat. I heard that binaryjs is ...
0
votes
1answer
32 views

Unable to connect with socket.io using node.js and nginx

I've set up a socket.io with node.js running behind nginx. The main domain is running on nginx and sub-domain is being proxied to node.js. All the REST APIs are working fine, but when it comes to ...
0
votes
0answers
26 views

Chat with Node.js and socket.io

I am trying to make a chat in node.js and socket.io using express. I tried to follow this tutorial here: I would like to make my personal chat, based on this tutorial. In the tutorial from the link ...
1
vote
3answers
42 views

Getting information from PHP into HTML5 JavaScript Game

I've been mucking around with JS/Node/Socket.IO and made a little multiplayer game where you are all dots and can move around. I now want to take it a level further and add a simple login system so ...
0
votes
2answers
28 views

node.js - knowing which user is emitting to the server

maybe it's dumb question because I get the feeling my understand of Node.js is insufficient, but my common sense tells me this should work: In theory I have a (for clarity sake) a chat, where a ...
0
votes
2answers
38 views

Loading .js files on client side with page served by Node JS

I have the following simple JS file, which will look familiar to anyone who's used Socket.IO with NodeJS and the Express framework: var express = require('express'), app = express(), server = ...
0
votes
1answer
25 views

Limit packet size in socket.io

I'm using Node.js + Socket.IO, and I want to limit packet size in security consideration. How can I do that? Is there a way to set the max packet size in Socket.IO?
0
votes
0answers
10 views

Emit event on noop or handleRequest call in Socket IO

I need to emit event on a socket when there is ANY request coming from client when it's in xhr-polling transport mode. In my use case SocketIO clients are on physical devices, and we rely on Socket IO ...
1
vote
0answers
24 views

Multiple socket.io connections

For some reason, sometimes our socket.io connections do not close properly. We can observe more than one socket.io connected to the same client. Above is a screenshot from Firebug. The same ...
0
votes
1answer
22 views

Socket.io keeps timing out on Heroku

This is the following code of my app.js: var port = process.env.PORT || 3000; var app = require('express').createServer(); var io = require('socket.io').listen(app); app.listen(port); ...
0
votes
0answers
24 views

Inter-thread bidirectional communication in android

I want to create a thread that communicates both with a network server(bidirectional) and with the UI(bidirectional). Using 2 instances of the Handler class(one in the UI and one in the new thread) ...
0
votes
2answers
20 views

socket.io not working on several clients

I'm trying to build a simple chat client and am having some issues getting it working across multiple clients. Chances are I've missed something really simple. When I send something from one client it ...
0
votes
1answer
26 views

Socket.IO chat - “ping” specified client

I have simple Socket.IO based chat, and when User1 clicked on User2 at "friends list", User1 will be connected into room with User2 (based on "token" from server). Everything works without problem, ...
0
votes
1answer
22 views

socket.io - socket.emit, socket.on, socket.send

Base from the official site of socket.io http://socket.io/#how-to-use, I cant find any terminologies. What are the difference between socket.emit , socket.on , and socket.end ? Can't find articles ...
0
votes
1answer
20 views

node.js - shared client beetwen different modules with socket.io?

I've got something like this: io.sockets.on('connection', function(player) { var currentRoom; currentRoom='lobby'; player.join(currentRoom); ...
2
votes
1answer
73 views

socket.io referring to localhost despite being set as a specfic IP

I'm trying to use web sockets to connect from a Google Chrome browser on my phone to a server running node.js and socket.io. Using the remote debugging tool in Google Chrome I get this error in the ...
0
votes
1answer
16 views

node.js - include .js files within socket.on('connection') method

Is it possible to include files like this? I need write a lot of code and it could help me with clarity. P.S. Sorry for my English ;) io.sockets.on('connection', function(client) { // include ...
0
votes
0answers
39 views

node.js socket.io express - user login system

I've got a problem with writing simple user login/registration system for my app :( I can't find any simple guide for this issue. Let's say I have a simple express application and I can add user to ...
0
votes
0answers
19 views

Pass query params from node.js server to socket.io

I'm writing a node.js app, that can generate url's like this: http://examle.com/?param1=val&param2=val I wonder if users will follow this urls to my app - is this possible to get params from ...
1
vote
0answers
38 views

Node.js and Socket.io become unresponsive

I have a relatively simple chat-type application running on Node.js and Socket.io. The node server streams chat data from a Minecraft server and then streams this to any clients connected on the ...
0
votes
1answer
25 views

using socket.io with dojo MultipleDefine error

I am trying to develop a web app. I already have working code where socket.io is used to communicate between the server side and client side. Now, I want to write the interface using Dojo, but the ...
1
vote
1answer
34 views

Double indexing in associative array

I'm building a server using Node.js. I store the objects representing my users in an associative array and right now the index of those objects are the sockets id of that connection. Using the ...
0
votes
1answer
38 views

Cannot run node js app listening on 443

I've got a socket application that I'm trying to make listen on port 443 (https). If I change the port (to e.g. 8080) I get no problems. The error shown is error raised: Error: listen EACCES My ...
1
vote
2answers
51 views

Send socket.io response data to client from node.js server in gzip format

The issue I'm having is that I don't know how to be able to tell whether or not the data that I'm sending back to the client is compressed in gzip format. Looking at the output of my server from the ...
1
vote
2answers
16 views

Why socket.io won't connect?

To my understanding socket.io is based on HTTP which is a standard protocol. I have my c code for HTTP server and when I type in a browser "localhost:8080" the server is working. But when I call var ...
0
votes
1answer
16 views

nodejs broadcast in a room console logs

When I broadcast an event in the room along with some data, it is showing that event n times in console. where n = number of players in the room. If 10 players are in the room then for any broadcast ...
1
vote
1answer
27 views

How to get multiple socket attributes in socket.io?

I'm building a chat app on which, for every client connection, i need to set some attributes to every client instance using socket.io. When i save the attribute, i use: client.set('name', name, ...
1
vote
1answer
28 views

Node.js unresponsive until key press on console

I have a Node.js app, that runs on a Windows Server 2008. I'm facing a weird problem here. My app does more than one async tasks. Sending data to socket.io, MySQL, HTTP connections, TCP connections ...
0
votes
0answers
23 views

Does socket.io handle max open connections per server issue?

I come across this post and find it an interesting problem. However, there seems to be no problem when I try this simple chat app with more than 7 tabs in chromium. Does socket.io handle this problem ...
1
vote
1answer
96 views

Node.js / Socket.io Access-Control-Allow-Origin error on both local and remote site

world ! I'm trying to get a JSON feed to my client, through my node/socket.io server. All I keep getting, locally, or remotely (using nodejitsu) is the following error : XMLHttpRequest cannot load ...
1
vote
1answer
27 views

Correct use of socket.io events's callbacks

I was reading this interesting introductory article about how socket.io's events and callbacks work. I decided to give first try with something as follows. First try server.js // client is the ...
2
votes
1answer
52 views

Apache + Symfony2 + HTTPS + Node.js + Socket.io: socket.emit not firing

I've been spending hours upon hours on this problem, but to no avail. EDIT: solution found (see my answer) Project background I'm building a project in Symfony2, which requires a module for ...
0
votes
2answers
83 views
+100

nginx as a proxy for NodeJS+socket.io: everything is OK except for big messages

As explained on nginx's website I've used these settings for my nginx to proxy websockets to a NodeJS server: location /socket.io/ { proxy_pass http://backend; proxy_http_version 1.1; ...
0
votes
0answers
30 views

Handling multiple connections for a single user in NodeJS

I have a NodeJS and SocketIO setup where a single user can create multiple socket connections. And when a disconnect is fired on a connection, some attributes are set for that user. The problem here ...
0
votes
0answers
10 views

how do i io.sockets.emit but not to 'this' room?

how do i specify a room to 'leave out' of an emit to all sockets? when doing this: io.sockets.emit('loc*'); all users are joined to a room called 'support' also joined a private room of 'their ...
0
votes
1answer
39 views

Easily create multiple socket.io events in node.js

Just a quick question around optimisation and DRY. I have my node server and everything works as it should, but I want to know how to clean up for future devs. I have a set of events being assigned ...
1
vote
3answers
47 views

Access-Control-Allow-Origin by same domain?

XMLHttpRequest cannot load http://server.chatcoding.net:8000/socket.io/ socket.io.js. Origin http://www.chatcoding.net is not allowed by Access-Control-Allow-Origin. That thing is preventing the ...

1 2 3 4 5 48