-
is your session ready for production, please intimate..
-
See comment left in `webServer.ts`:
```ts
this.#app.use(session({
secret: process.env.SESSION_SECRET,
resave: false,
saveUninitialized: true,
cookie: {
httpOnly: true,
// Restrict t…
-
Hi!
I tried the [express transport-querystring example](https://github.com/simov/grant/blob/master/examples/transport-querystring/express.js) with the following configuration:
```
{
"defaults"…
-
I am developing an application and hosting on firebase. I used express-session for firebase firestore. The documentation recommends default cookie name as __session as mentioned here https://www.npmjs…
-
1. Use express-session or JWTs for session management.
2. Store tokens in server-side sessions or as HttpOnly cookies.
3. Ensure tokens are not exposed to client-side scripts.
-
I tried using this with "passport-jwt". I don't have "express-session" installed.
I'm getting this error:
`{"status":"error","message":"OpenID Connect requires session support. Did you forget to …
-
Hi @benawad ! Thank you for your great videos.
Today I faced with one problem here
https://github.com/benawad/lireddit/blob/28011261643e466bb9258acf1f5c335582639201/server/src/types.ts#L7
as I can …
-
Hi,
I am working with expressjs session as part of my application.
Sometimes, when a logout occurs, the code is trying to reload the session which is 'undefined' by then.
Is it possible to hav…
-
### Implement Authentication Pages (Login, Signup, Signout)
**Objective:**
Create full-stack authentication functionality for our app, including Login, Signup, and Signout pages.
**Project Over…
-
```
5|index | Warning: connect.session() MemoryStore is not
5|index | designed for a production environment, as it will leak
5|index | memory, and will not scale past a single process.
``…