Skip to content

Instantly share code, notes, and snippets.

@Srushtika
Created November 16, 2018 14:38
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 Srushtika/78bb23958358ce3c2e728e88a19989a9 to your computer and use it in GitHub Desktop.
Save Srushtika/78bb23958358ce3c2e728e88a19989a9 to your computer and use it in GitHub Desktop.
WebSockets server tutorial
ws.addEventListener('open', () => {
// Send a message to the WebSocket server
ws.send('Hello!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment