Answer the question
In order to leave comments, you need to log in
Express-session and cookie-parser - how to check the work?
I'm using a template where the version of express-session is 1.14.1. Cookie-parser is also used there. This is an app with Passport authentication.
The docs state:
Note Since version 1.5.0, the cookie-parser middleware no longer needs to be used for this module to work. This module now directly reads and writes cookies on req/res. Using cookie-parser may result in issues if the secret is not the same between this module and cookie-parser.
app.use(cookieParser());
Answer the question
In order to leave comments, you need to log in
No, it's not needed, express-session has a cookie in dependencies.
Pretty easy to check, req -> res is a midelware event chain.
Create your custom before app.use(cookieParser()), see what is in the cookie field, and after. You also need to look at serialization, in which storage the sessions are located and how the passport will be checked.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question