This tutorial explains how to use ExpressJS Session Stores using MongoDB and PostgreSQL. In one of our previous posts we saw how to work with sessions in ExpressJS app. In that example we made use of memory as the session store. We also mentioned that we can replace memory with other session stores like MongoDB, …
ExpressJS Tutorials
NodeJS : ExpressJS Session Management
This tutorial explains the basic concept of ExpressJS session management. Sessions are an important part of web application. HTTP being stateless, to maintain state across requests among many other approaches, sessions and cookies is one approach. In this article we will explore how we can make use of Node package express-session to maintain session in a …