Good day guys here is my code :
var express = require('express');
var session = require('express-session');
var app = express();
app.set('trust proxy', 1);
app.use(session({
secret: 'secret',
saveUninitialized: true,
resave: false,
maxAge: 1000 * 60 * 15,
cookie:{
secure: true
}
}));
this code always returns on my log a :
Warning: connect.session() MemoryStore is not designed for a production environment, as it will leak memory, and will not scale past a single process.
i tried googling about it but i don't seems to understand some tutorials . Sorry for my bad english.
I hope this would help to someone who's struggling the same problem as mine . Just dug it by myself .
It's all about storing sessions, you should add a storing system that store sessions into your database. This help your app to manage sessions.
For example, in mongodb you can use connect-mongo, you should found a store package and for other databases.
https://www.npmjs.com/package/connect-mongo