Currently utilizing a node.js + express server and managing sessions for users who are logged in.
I am curious about how a user can log out if the server becomes unreachable?
In the usual method, I would simply call req.logout() on the request object in the express server to clear cookies and session data.
However, what can be done if the server is not accessible after the user has already logged in? How can they manually log out from the browser?