Skip to content

Instantly share code, notes, and snippets.

@the872
the872 / client.js
Created November 11, 2021 08:23
Sockets Example
import socketIOClient from "socket.io-client";
const ENDPOINT = "http://localhost:3001";
const SocketExample = (props) => {
const [response, setResponse] = React.useState({});
React.useEffect(() => {
const socket = socketIOClient(ENDPOINT);
socket.on("FromAPI", data => {
setResponse(data);