socket io has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource code example
Example: socket.io cors
const io = require("socket.io")(httpServer, { cors: { origin: "http://localhost:8080", methods: ["GET", "POST"] }});httpServer.listen(3000);