tsigel, я на хостинг не загружал, все локально.
Вот серверная часть:
var express = require('express');
var app = express();
var http = require('http').Server(app);
var io = require('socket.io')(http);
http.listen(3000, function(){
console.log('listening on *:3000');
});
app.use(express.static(__dirname + "/../client"));
А вот index.html
<!doctype html>
<html>
<head>
<title>Game</title>
<style type="text/css">
body{
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<canvas id="cvs"></canvas>
<script src="/socket.io/socket.io.js"></script>
</body>
</html>