วิธีการใช้งาน : Node.js - RemaxThailand/Socket GitHub Wiki
socket.io-client
ติดตั้ง Packagesnpm i socket.io-client
การเรียกใช้งาน
var socket = require('socket.io-client')('https://www.remaxthailand.co.th');
// ตัวอย่างการรับค่าที่ส่งมาจาก Server
socket.on('online', function(data){
console.log(data);
});
// ตัวอย่างการส่งค่าไปที่ Server
socket.emit('api', {
module: 'member'
, action: 'basicInfo'
, token: 'ABC123'
});