UNPKG

react-cosmos

Version:

Sandbox for developing and testing UI components in isolation

6 lines (5 loc) 205 B
import { getServerAddress } from './serverAddress.js'; export function getWebSocketUrl(config) { const protocol = config.https ? 'wss' : 'ws'; return `${protocol}://${getServerAddress(config)}`; }