Skip to content

Instantly share code, notes, and snippets.

@stannehill
Last active December 20, 2015 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stannehill/6104937 to your computer and use it in GitHub Desktop.
Save stannehill/6104937 to your computer and use it in GitHub Desktop.
Backend code for socket.io blog post
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs');
app.listen(4000);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
var playernum = 0;
io.sockets.on('connection', function (socket) {
console.log('connected successfully...');
playernum === 1 ? playernum = 0 : playernum++;
socket.emit('player', {'player': playernum});
socket.on('volley', function (input) {
socket.broadcast.emit('return', {'data': 1});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment