session
session copied to clipboard
Simple session middleware for Express
This patch introduces support for dynamic cookie generation in express-session. Instead of only accepting a static object for the options.cookie parameter, the patch allows developers to supply a function that...
Related https://github.com/nodejs/citgm/issues/1095#issuecomment-2725155135
This is my test to add types to the repo. I wanted to take care of the following 1. Ensure types are close to the code with hope they stay...
Is there a reason the max age is reset with each response? I need to be able to see if half of TTL has elapsed. The cookies expiration is being...
Clarified advantages to requiring signed cookies in addition to the use of a high-entropy session ID
Can the version of debug dependency be updated (currently it is 2.6.9), as it is associated with a vulnerability? [https://www.cve.org/CVERecord?id=CVE-2017-20165](https://www.cve.org/CVERecord?id=CVE-2017-20165) Thank you.
I noticed that changing the configuration in production/deployed mode of express-session cookies can lead to duplicate connect.sid cookie stored in the browser with the old and the new configuration -...
Hi, would like to add express-sqlite3 session store to the list of compatible session stores. express-sqlite3 is a fully tested light-weight and configurable SQlite3 sessions store which uses latest version...
call to extend session made via react const extendSession = async () => { try { const response = await fetch(`${process.env.REACT_APP_API_HOST}/v1/auth/extend-session`, { method: 'GET', headers: { Authorization: `Bearer ${localStorage.getItem('token')}`, },...