I can't able to understand how express session is producing session-id On what bases express is producing session-id
app.use(session({ name : 'session-id', secret : "12325465864151", saveUninitialized : false, resave : false, store : new FileStore(), }))
I wrote this and saw that random session-id is produced and can't able to understand how that session-id is generated and who generates it