Hi Gumshoe2099,
I tried Nodejs but I am not that good.
Here's my server code below.
My problem is that, when I send data to server, I can't get back the data back but it will display in console.
Any idea?
var WebSocketServer = require('ws').Server
, wss = new WebSocketServer({port: 8080});
wss.on('connection', function(ws) {
ws.on('message', function(message) {
console.log('received: %s', message);
});
ws.send('something');
});