10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
const events = new EventEmitter();
|
|
const port = 9000;
|
|
|
|
let ws = new WebSocket('ws://' + window.location.hostname + ':' + port);
|
|
ws.onmessage = (e) => {
|
|
let json = JSON.parse(e.data);
|
|
for (let key in json) {
|
|
events.emit(key, json[key]);
|
|
}
|
|
};
|