-
[ NodeJS ] 클라이언트 접속자 아이피 가져오기Topic/Node.js | server 2022. 11. 9. 12:53반응형
// a: req 에서 클라이언트 ip 추출 let clientIp = req.headers['x-forwarded-for'] || req.connection.remoteAddress; if (clientIp.substr(0, 2) === '::') { clientIp = clientIp.substr(2); }
반응형'Topic > Node.js | server' 카테고리의 다른 글
[ Redis ] 레디스 설치 및 실행 방법 (Mac | OSX) (0) 2023.01.20 [ NodeJS ] node-schedule에서 클러스터 2개 중복 실행 방지 (0) 2023.01.07 Node js란 무엇일까? (다시 개념정리) (0) 2022.06.13 쿠키, 세션, 토큰 정리 (0) 2022.02.10 jwt, 쿠키, 세션, 토큰 (0) 2022.02.08