Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 469 Bytes

File metadata and controls

27 lines (14 loc) · 469 Bytes

req.cookies

An object containing all of the unsigned cookies from this request (req).

Usage

req.cookies;

Example

Assuming the request contained a cookie named "chocolatechip" with value "Yummy:

req.cookies.chocolatechip;
// "Yummy"