티스토리 뷰
반응형
Installation
$ npm install cookie-parserAPI
var express = require('express')
var cookieParser = require('cookie-parser')
var app = express()
app.use(cookieParser())cookieParser(secret, options)
secreta string used for signing cookies. This is optional and if not specified, will not parse signed cookies.optionsan object that is passed tocookie.parseas the second option. See cookie for more information.decodea function to decode the value of the cookie
cookieParser.JSONCookie(str)
Parse a cookie value as a JSON cookie. This will return the parsed JSON value if it was a JSON cookie, otherwise it will return the passed value.
cookieParser.JSONCookies(cookies)
Given an object, this will iterate over the keys and call JSONCookie on each value. This will return the same object passed in.
cookieParser.signedCookie(str, secret)
Parse a cookie value as a signed cookie. This will return the parsed unsigned value if it was a signed cookie and the signature was valid, otherwise it will return the passed value.
cookieParser.signedCookies(cookies, secret)
Given an object, this will iterate over the keys and check if any value is a signed cookie. If it is a signed cookie and the signature is valid, the key will be deleted from the object and added to the new object that is returned.
Example
var express = require('express')
var cookieParser = require('cookie-parser')
var app = express()
app.use(cookieParser())
app.get('/', function(req, res) {
console.log("Cookies: ", req.cookies)
})
app.listen(8080)
// curl command that sends an HTTP request with two cookies
// curl http://127.0.0.1:8080 --cookie "Cho=Kim;Greet=Hello"
반응형
'웹프로그래밍 > node.js & Typescript' 카테고리의 다른 글
| [node.js] How to access the GET parameters in Express.js or Node.js? (0) | 2015.06.10 |
|---|---|
| [node.js] Most middleware (like logger) is no longer bundled with Express and must be installed separately... (0) | 2015.06.09 |
| [node.js] Check synchronously if file/directory exists in Node.js (0) | 2015.06.09 |
| [node.js] file upload (0) | 2015.06.09 |
| [node.js] bodyParser deprecated (0) | 2015.06.09 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 안드로이드
- php
- 출산
- 투자
- 혜택
- ubuntu
- 내집마련
- 부동산
- 재테크
- 공제
- etf
- 안과
- 지도
- 앱테크
- 카카오뱅크
- 금융
- 카뱅
- 대출
- 신혼부부
- 2026
- 세금
- 적금
- 해외주식
- 고금리
- 우회
- 아파트매매
- 주담대
- 연말정산
- 정부
- remove
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
글 보관함
