2021-09-11 23:21:34 +02:00
|
|
|
const WebSocket = require('ws');
|
|
|
|
|
|
|
|
|
|
const wss = new WebSocket.Server({ port: 8080 });
|
|
|
|
|
|
|
|
|
|
wss.on('connection', function connection(ws) {
|
|
|
|
|
ws.on('message', function incoming(message) {
|
|
|
|
|
console.log('received: %s', message);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ws.send('something');
|
|
|
|
|
});
|