Guest User

Untitled

a guest
May 24th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. //run on Chrome's console
  2.  
  3. ws = new WebSocket("ws://localhost:3400");
  4. ws.onmessage = function(ev){ console.log(ev.data); }
  5. ws.send("hello");
  6. //no response is received here :(//
Add Comment
Please, Sign In to add comment