think-session-file
v1.1.4
Published
Use file to store session data
Downloads
298
Keywords
Readme
think-session-file
File session for ThinkJS
Install
npm install think-session-file
How to use
config file src/config/adapter.js
, add options:
const fileSession = require('think-session-file');
exports.session = {
type: 'file',
common: {
cookie: {
name: 'thinkjs',
//maxAge: '',
//expires: '',
path: '/', //a string indicating the path of the cookie
//domain: '',
//secure: false,
//keys: [],
httpOnly: true,
sameSite: false,
signed: false,
overwrite: false
}
},
file: {
handle: fileSession,
sessionPath: path.join(think.ROOT_PATH, 'runtime/session'), //file session store root path
maxAge: '1d', //session timeout, default is 1 day
autoUpdate: false, //update expires time when get session, default is false
}
}