10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
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)
|
||
|
}))
|