How to set and delete cookies with Express

March 18, 2020

Setting cookies

res.cookie("token", MY_TOKEN, { maxAge: MILLISECONDS_FROM_NOW_TO_EXPIRE });

There’s more options (other than maxAge) described in the Express documentation.

Deleting cookies

res.clearCookie("token");

Get new posts by email (or RSS)!