How to use the call function from express-session
Find comprehensive JavaScript express-session.call code examples handpicked from public code repositorys.
36 37 38 39 40 41 42 43 44 45
* @param {Number} [options.timeout] Session timeout (in minutes). Use a negative value to never expire. * @public */ function MemoryStore(options) { Store.call(this) this.sessions = Object.create(null) this.session_timers = Object.create(null) // set up the store
9
10
2
express-session.MemoryStore is the most popular function in express-session (21 examples)