cookie-session icon indicating copy to clipboard operation
cookie-session copied to clipboard

Simple cookie-based session middleware

Results 9 cookie-session issues
Sort by recently updated
recently updated
newest added

Hello! 👋 Thank you for this package! I'm considering contributing some code. In a project I'm working on I'd like to utilize two separate sessions with different SameSite settings for...

Is it possible to attach flag "Priority=High" into a session cookie? Flag is supported in Chromium based browsers which is used by majority, and it could help avoid being purged...

Enables the user to create arbitrarily many cookie-sessions, whose options can differ. The API design was motivated by ensuring backwards compatibility with v2 (more details in the Discussion below). Fixes:...

enhancement
pr

I was thinking if we compress the cookie we can fit more stuff into it, or anyway have a lighter cookie in most cases. WDYT?

please add the ability to encrypt cookies.

## Main Changes This pipeline will proactively report the status of the project (every day and when a push is done to `master` branch) including critical fields (CI-Tests, Contributors, Dependency-Update-Tool,...

I have following setup for cookie session middleware in my express app: ```js app.use( cookieSession({ name: '__session', keys: [env.COOKIE_SIGNING_SECRET], maxAge: COOKIE_MAX_AGE, sameSite: 'none', httpOnly: true, secure: false, signed: true, })...