EXPRESS(node.js) to WebSocket 세션 공유
Express로 웹서버 생성 후 서버 및 세션정보를 WebSocket으로 전달
WebSocket 서버 생성 시 verifyClient 옵션으로 세션 처리
server.ts
1 | import bodyParser from "body-parser"; |
ws.ts
1 | import WebSocket from 'ws'; |
Express로 웹서버 생성 후 서버 및 세션정보를 WebSocket으로 전달
WebSocket 서버 생성 시 verifyClient 옵션으로 세션 처리
server.ts
1 | import bodyParser from "body-parser"; |
ws.ts
1 | import WebSocket from 'ws'; |