File size: 258 Bytes
811126d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { io } from "socket.io-client";

const socket = io("http://localhost:5001");

socket.on("connect", () => {
  console.log("connected to server");
  socket.emit("message", "Hello from client");
});

socket.on("foo", (data) => {
  console.log(data);
});