webSocketConnection.js 326 B

1234567
  1. import WebSocketConnection from '../../../server/core/WebSocketConnection';
  2. const protocol = (window.location.protocol == 'https:' ? 'wss:' : 'ws:');
  3. let url = `${protocol}//${window.location.host}${window.location.pathname}`;
  4. url += (url[url.length - 1] === '/' ? 'ws' : '/ws');
  5. export default new WebSocketConnection(url);