tricot/examples/node/server.mjs

10 lines
203 B
JavaScript
Raw Normal View History

2022-05-10 09:29:17 +00:00
import { WebSocketServer } from 'ws';
const wss = new WebSocketServer({ port: 3000 });
wss.on('connection', ws =>
ws.on('message', msg => {
console.log('received: %s', msg)
ws.send(msg)
}))