First off, that website is a horrible place to go.
Now on to the question.
What sessions actually are:
- Data is stored on the server side
- A cookie is issued which contains an ID
- This ID gets send back to the server on every request, due to the fact that the Browser sends the cookies
- Now the server can re-associate the ID in the cookie - commonly called
Session ID or short SID - with the session data stored on the server
Express.js has support for Sessions built in.
What the example shows:
- Setting up the Express.js Middleware
- Using a third party store for saving the session data, in this case redis (which IMO is overkill for your problem atm)
Installing redis requires quite some work, but it's also possible to use Express.js's built in memory store:
var express = require('express');
var app = express.createServer();
var MemoryStore = require('connect/middleware/session/memory');
app.use(express.bodyDecoder());
app.use(express.cookieDecoder());
app.use(express.session({ store: new MemoryStore({ reapInterval: 60000 * 10 }) }));
app.get('/', function(req, res){
req.session.visitCount = req.session.visitCount ? req.session.visitCount + 1 : 1;
res.send('You have visited this page ' + req.session.visitCount + ' times');
});
app.listen(4000);
This will simply keep track of how many times you visited the page, close your browser and re-open the count will still be there.
You can find more on the options of the MemoryStore, like maximum life time of a session etc. here.