socketio
[Nodejs] Express Typescript SocketIo
여러 챗봇과 실시간 채팅을 만들어야 했다. 기획이 굉장히 납득가지 않았지만, 기획자는 기획자의 일이 있는거니까 일단 이해하고 만들었다.. socket.model.ts const socketConnect = (httpServer: any) => { const ioConnect = new socketIo.Server(httpServer, { cors: { origin: '*', methods: ['GET', 'POST'], credentials: true, }, }); const io = ioConnect.of('/socket/chat'); return io; }; export = socketConnect; 소켓을 여는 함수를 만든다. app.ts import express from 'express'; im..