How to set and delete cookies with Express
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");