web api instance property
WebSocketStream: url property
Limited availabilityAvailable in workers
The url read-only property of the
WebSocketStream interface returns the URL of the WebSocket server that the WebSocketStream instance was created with.
Value
A string.
Examples
const wss = new WebSocketStream("wss://example.com/wss");
// Logs "example.com/wss" to the console
console.log(wss.url);
Specifications
Not currently a part of any specification. See https://github.com/whatwg/websockets/pull/48 for standardization progress.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- WebSocketStream: integrating streams with the WebSocket API, developer.chrome.com (2020)