Разобрался я. Подключаем модуль ws:
const WebSocketServer = require('ws').Server;
webSocketServer.on('connection', function(ws){
var timer = setInterval(function(){
ws.send(dateTime());
}, 1000);
console.log("клиент подключился");
ws.on('close', function(){
console.log('клиент отключился');
clearInterval(timer);
});
});
const dateTime = function () {
moment.locale('ru');
day = moment().format('L');
time = moment().format('LTS');
return day + ' ' + time;
};