think-session

Session for ThinkJS

Usage no npm install needed!

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

README

think-session

Build Status Coverage Status npm

Session for ThinkJS 3.x.

Add session method for controller/context.

config

config file src/config/adapter.js, add options:

const cookie = require('think-session-cookie');
exports.session = {
  type: 'cookie',
  common: {
    maxAge: 24 * 3600 * 1000, // 1 day 
  },
  cookie: {
    handle: cookie
  }
}

session method

  • this.session() get all session data
  • this.session(name) get session data with name
  • this.session(name, value) set session data
  • this.session(null) delete all session data
  • this.session(name, undefined, options) get session data with options

For each ctx, session is only instantiated once.