I get cookies or session that I created earlier for a SELECT in mysql, and as I can not do that. I was trying to do with "express" but idk if I can put the same port to listen, to date info received nothing cookies.
I'm using the HTML5 WebSocket class to connect, socket.io not use that I have to do with the kind of html5.
var mysql = require('mysql');
db = mysql.createConnection({
host : 'localhost',
user : 'root',
password : ''
});
db.connect();
db.query('USE database');
var WebSocketServer = require('ws').Server
, wss = new WebSocketServer({port: 4002});
wss.on('connection', function(ws) {
ws.on('message', function(message)
{
console.log("Recibido: %s",message);
});
ws.send('la cookie o session es: %s',cookie['id']);
});