Не получается чтобы и сайт и websocket работали на одному порту. Можно ли сделать чтобы он работал как socket.io на одном порту ?
const express = require('express');
const app = express();
const http = require('http');
const server = http.createServer(app);
const WebSocket = require('ws');
const io = new WebSocket.Server({ port: 80 }) ;
app.get('/', (req, res) => {
res.sendFile(__dirname + '/index.html');
});
io.on('connection', (socket) => {
console.log(socket);
});
server.listen(80, () => {
console.log('listening on *:80');
});