Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 459 Bytes

req.cookies.md

File metadata and controls

28 lines (14 loc) · 459 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"