socket.io-admin-ui
socket.io-admin-ui copied to clipboard
Admin UI for Socket.IO
Reference: https://socket.io/docs/v4/client-options/#query
Hi, i just set up the admin-ui to my project and everything works perfectly fine with my local api (localhost:3000), but if i try to connect to my production api...
https://github.com/socketio/socket.io-admin-ui/blob/158864989dddeba67df9975a4cad48ef310f8c80/lib/index.ts#L543C32-L543C38 @WebSocketGateway(8080, { namespace: 'chat', cors: { origin: '*', credentials: true, }, }) afterInit() { instrument(this.server, { auth: false, mode: 'production', }); } // error TypeError: io.of is not a...
``` (node:13860) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 upgrade listeners added to [Socket]. MaxListeners is 10. Use emitter.setMaxListeners() to increase limit at genericNodeError (node:internal/errors:983:15) at wrappedFn (node:internal/errors:537:14) at _addListener...