index.js 201 B

1234567
  1. const ws = new WebSocket("ws://localhost:8000/ws");
  2. const data = {
  3. message: "create",
  4. p: "12345",
  5. };
  6. ws.onopen = ()=>{ws.send(JSON.stringify(data))};
  7. ws.onmessage = (m)=>{console.log(m.data)};