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.

24 lines
662 B

5 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const WebSocket = require("ws");
5 years ago
let srvr;
5 years ago
const connect = (server) => {
5 years ago
srvr = new WebSocket.Server({ server, clientTracking: true });
console.log('=> [socket] connected to server');
5 years ago
srvr.on('connection', socket => {
console.log('=> [socket] connection received');
5 years ago
});
};
exports.connect = connect;
const send = (body) => {
5 years ago
srvr.clients.forEach(c => {
5 years ago
if (c)
5 years ago
c.send(body);
});
5 years ago
};
exports.send = send;
const sendJson = (object) => {
send(JSON.stringify(object));
};
exports.sendJson = sendJson;
//# sourceMappingURL=socket.js.map