UNPKG

@wbg-mde/server

Version:

MDE communication channel with Socket IO and express.

20 lines 598 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ExportSocket { constructor(activeSocket) { this.socket = activeSocket; } /* * Init resequence ************************************************/ init() { this.socket.on('export', (msg) => { console.log(msg); setTimeout(() => { this.socket.emit('mde-server-resp', { msg: 'Responce from export' }); }, 5000); }); } } exports.ExportSocket = ExportSocket; //# sourceMappingURL=export.socket.js.map