Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c3 step graph
- python subprocess
- snmp test
- gcc 업데이트
- subporcess path
- 정규식 컴파일
- regex_search
- centos pyhon 설치
- grafana dashboard
- 백준
- snmp
- c3 second
- 1697
- 정규식 활용
- c3 초
- 정규식 문자열 출력
- CentOS7
- gcc regex
- c3 축 가리기
- g++ 업데이트
- telegraf
- linux시간으로 변경
- influxdb 설치
- selinux port 등록
- c3 축 없애기
- python popen
- semanage
- c++ 정규식
- InfluxDB
- python os
Archives
- Today
- Total
리셋 되지 말자
[NodeJS] 쿠키 읽기 본문
쿠키 읽기
- cookie.js
var http = require('http');
var app = http.createServer(function(request, response){
console.log(request.headers.cookie);
response.writeHead(200, {
'Set-Cookie' : ['yummy_cookie=choco', 'tasty_cooke=strawberry']
});
response.end('hello world');
});
app.listen(80);
request.headers에 있는 cookie를 출력해본다.
쿠키가 출력되는 것을 확인할 수 있다.
쿠키를 다루는 npm 모듈
(www.npmjs.com/package/cookie) 설치한다.
- cookie.js
var http = require('http');
var cookie = require('cookie');
var app = http.createServer(function(request, response){
console.log(cookie.parse(request.headers.cookie));
response.writeHead(200, {
'Set-Cookie' : ['yummy_cookie=choco', 'tasty_cooke=strawberry']
});
response.end('hello world');
});
app.listen(80);
쿠키들의 정보가 객체화 되어서 출력되는 것을 확인할 수 있다. (key, value로 사용할 수 있게 되었다.)
쿠키가 없을 때
cookie.parse 함수는 인자가 undefined이면 오류가 나므로 분기문을 하나 추가해줘서 보강(?) 한다.
var http = require('http');
var cookie = require('cookie');
var app = http.createServer(function (request, response) {
if (request.headers.cookie != undefined) {
console.log(cookie.parse(request.headers.cookie));
}
response.writeHead(200, {
'Set-Cookie': ['yummy_cookie=choco', 'tasty_cooke=strawberry']
});
response.end('hello world');
});
app.listen(80);
쿠키가 있으면 console.log를 찍고, 없으면 찍지 않는다.
'NodeJS > 생활코딩' 카테고리의 다른 글
[NodeJS] Secure 와 HttpOnly (0) | 2020.09.25 |
---|---|
[NodeJS] Session cookie와 Permanent cookie (0) | 2020.09.25 |
[NodeJS] 쿠키의 생성 (0) | 2020.09.25 |
[express] 보안 - 포괄적으로 둘러보기 (0) | 2020.09.24 |
[express] 라우터-주소체계변경 (0) | 2020.09.24 |
Comments