You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const socketio = require("socket.io");
|
|
|
|
|
|
|
|
let io: any
|
|
|
|
|
|
|
|
function connect(server) {
|
|
|
|
io = socketio(server, {
|
|
|
|
// path: '/socket',
|
|
|
|
serveClient: false,
|
|
|
|
// below are engine.IO options
|
|
|
|
pingInterval: 10000,
|
|
|
|
pingTimeout: 5000,
|
|
|
|
cookie: false
|
|
|
|
});
|
|
|
|
|
|
|
|
io.on('connection', client => {
|
|
|
|
console.log("=> [socket.io] connected!")
|
|
|
|
client.on('event', data => { /* … */ });
|
|
|
|
client.on('disconnect', () => { /* … */ });
|
|
|
|
|
|
|
|
io.sockets.send('{"try":"try"}')
|
|
|
|
client.send('{"try":"try"}')
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const send = (body) => {
|
|
|
|
// srvr.clients.forEach(c=>{
|
|
|
|
// if(c) c.send(body)
|
|
|
|
// })
|
|
|
|
io.sockets.send(body)
|
|
|
|
}
|
|
|
|
|
|
|
|
const sendJson = (object) => {
|
|
|
|
send(JSON.stringify(object))
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
connect,
|
|
|
|
send,
|
|
|
|
sendJson
|
|
|
|
}
|