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

socket.emit("message", "سلام سرور!");

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