Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:6001/socket.io/?EIO=3&transport=polling&t=NRZ3xyq. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing) code example
Example 1: socket io with cors
const io = require("socket.io")(httpServer,
{
cors: {
origin: "*",
methods: ["GET", "POST"]
}});
Example 2: socket.io cors
const io = require("socket.io")(httpServer, { cors: { origin: "http://localhost:8080", methods: ["GET", "POST"] }});httpServer.listen(3000);