강의

멘토링

로드맵

[Renewed] Node.js Textbook - From Basics to Project Practice

You will learn about what a node is, the latest JavaScript grammar, the node API, npm, module systems, databases, testing, etc. and create a project with 5 practical examples. Finally, you will deploy the service to the cloud.

(4.7) 123 reviews

3,276 learners

Level Basic

Course period Unlimited

Node.js
Node.js
MySQL
MySQL
MongoDB
MongoDB
Sequelize
Sequelize
Node.js
Node.js
MySQL
MySQL
MongoDB
MongoDB
Sequelize
Sequelize

With the release of passport@0.6, req.logout has a problem.

req.logout(() => {
res.redirect('/');
});

You need to provide a callback function like this and respond within it.

With passport@0.6, it seems like the session cookie is changed every time you log in and also cleared when you log out.

Comment