Files
Erik Krogh Kristensen 9a18dc32c1 autoformat WebSocket tests
2020-03-23 23:49:26 +01:00

13 lines
242 B
JavaScript

(function () {
const WebSocket = require('ws');
const ws = new WebSocket('ws://example.org');
ws.on('open', function open() {
ws.send('Hi from client!');
});
ws.on('message', function incoming(data) {
console.log(data);
});
})();