Skip to content

Instantly share code, notes, and snippets.

@matiaslopezd
Last active December 12, 2023 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matiaslopezd/cd398b187c0237b89744cc017e41a1c2 to your computer and use it in GitHub Desktop.
Save matiaslopezd/cd398b187c0237b89744cc017e41a1c2 to your computer and use it in GitHub Desktop.
Snippet WebSocket
class MyCustomWebSocket extends WebSocket {
constructor(url) {
super(url);
}
}
const websocket = new MyCustomWebSocket('wss://websocket-test.videsk.workers.dev/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment