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.
37 lines
665 B
37 lines
665 B
import * as WebSocket from 'ws'
|
|
|
|
// let connections = new Map()
|
|
// let connectionCounter = 0
|
|
|
|
let lastConn: any
|
|
|
|
const connect = (server) => {
|
|
server = new WebSocket.Server({ server })
|
|
|
|
console.log('=> [socket] connected to server')
|
|
|
|
server.on('connection', socket => {
|
|
console.log('=> [socket] connection received')
|
|
// var id = connectionCounter++;
|
|
// connections.set(id, socket)
|
|
lastConn = socket
|
|
})
|
|
|
|
}
|
|
|
|
const send = (body) => {
|
|
// connections.forEach((socket, index) => {
|
|
// socket.send(body)
|
|
// })
|
|
lastConn.send(body)
|
|
}
|
|
|
|
const sendJson = (object) => {
|
|
send(JSON.stringify(object))
|
|
}
|
|
|
|
export {
|
|
connect,
|
|
send,
|
|
sendJson
|
|
}
|
|
|