permanent cookie1 [[node.js]] Session Cookie와 Permanent Cookie [[node.js]] Session Cookie와 Permanent Cookie 오늘은 Session Cookie와 Permanent Cookie에 대하여 알아보겠습니다. HTTP Server가 HTTP Client에게 보내는 쿠키는 보관 기간에 따라 2가지 종류로 나뉩니다. Session Cookie : 클라이언트 측에서 웹 브라우저를 끄면 바로 삭제되는 쿠키 Permanent Cookie : 웹 브라우저를 끄던 말던 관계 없이 일정 기간동안 지속되는 쿠키 const http = require("http"); const cookie = require('cookie'); app = http.createServer(function(request,response){ if (request.headers.coo.. 2022. 3. 9. 이전 1 다음