Set persistent cookie with Express.js

Viewed 2540

How can I set a cookie that is not removed when the browser is closed?

The docs of res.cookie show option parameters you can pass to the method but I haven't been able to find a configuration that makes the cookie persist after closing the browser.

res.cookie('name', 'spence', { expires: 0 });
1 Answers
Related