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")
Subscribe to my newsletter!
A weekly round-up of new blog posts and updates to projects I’m working on.