think-session-file

Use file to store session data

Usage no npm install needed!

<script type="module">
  import thinkSessionFile from 'https://cdn.skypack.dev/think-session-file';
</script>

README

think-session-file

File session for ThinkJS

Build Status Coverage Status npm

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
  }
}