Skip to content Skip to sidebar Skip to footer
Showing posts with the label Sockets

Socket.io Using A For Loop To Add Socket.on Methods

Assume socketMethods:{ update:function(data){ this.emit('test', data); … Read more Socket.io Using A For Loop To Add Socket.on Methods

Portscan In Node Doesn't Work If Port Range Is Too Wide

I'm trying to write a simple portscan script in nodejs. You can run this script against scanme.… Read more Portscan In Node Doesn't Work If Port Range Is Too Wide

Iterate Over Sockets In Socket.io V1? "...has No Method 'clients'"

Before I was able to write something like this: io.sockets.clients().forEach(function (socket) { … Read more Iterate Over Sockets In Socket.io V1? "...has No Method 'clients'"

Node.js, Socket.io: How To Get Client Browser-language?

I am trying to get the language the user uses in order to serve the right sound files for a playing… Read more Node.js, Socket.io: How To Get Client Browser-language?

Angularjs: Reconnect Websocket Inside A Service

Im using web sockets in my AngularJS application. When a user logs out the web socket connection is… Read more Angularjs: Reconnect Websocket Inside A Service

Socket.io In Express Routes File

I'm working on a project which consists in creating a game of the goose like. In order to do th… Read more Socket.io In Express Routes File