Want to test your socket io implementation in your backend while your client isn't ready, then this is for you.
- On your server, set the cors origin to a wildcard(*)
const io = require("socket.io")(http, { cors: { origin: "*" }, });
- Run your server
- Visit the test client
- Connect to your server
- Emit and Listen ⚡