게시글
질문&답변
socket.js 에서 referer로부터 roomId를 가져올 때
저도 질문자님처럼 request.referer가 undefined 뜨더라구요.그래서 다음과 같이 작성하였어요.index.html클라이언트에서 "roomId"를 Socket 연결 시 Url QueryString으로 전달const socket = io.connect( `http://localhost:2000/chat?roomId=${$roomId}`, { path: "/socket.io", transports: ["websocket"], }, ); socket.tsinterface IRequestQuery { roomId: string; } socket.on("disconnect", async () => { const { roomId }: IRequestQuery = socket.handshake .query as unknown as IRequestQuery; const currentRoom = chat.adapter.rooms.get(roomId); const userCount = currentRoom?.size; console.log(userCount); });
- 0
- 3
- 739
고민있어요
느낌표살인마네
- 1
- 1
- 239
스터디
모집중
Node.js 온라인 스터디
- 0
- 0
- 274
고민있어요
대세는 Promise.allSettled
- 0
- 1
- 194
질문&답변
실행 시 결과창에서 한글이 번역이 안돼서 출력돼요
webSocket.send(encodeURIComponent("클라이언트입니다.")); ws.on("message", (server) => { console.log(decodeURIComponent(server)); });
- 0
- 2
- 453
질문&답변
TypeError: RateLimit is not a constructor
6이면 new 삭제하면 됩니다! https://www.npmjs.com/package/express-rate-limit
- 1
- 2
- 729