UNPKG

koa-mysql-session

Version:

a session store compatible with koa-generic-session based off of the SQL logic in the connect mysql-session-store project

37 lines (29 loc) 897 B
koa-mysql-session ================= this is an adpatation of the logic from the connect mysql-session-store (https://github.com/sugendran/mysql-session-store) to koa-generic-session (https://github.com/koajs/generic-session). https://www.npmjs.org/package/koa-mysql-session Usage ================= npm install koa-mysql-session example ================= ```js const koa = require('koa') , session = require('koa-generic-session') , MysqlStore = require('koa-mysql-session') , app = koa() ; const THIRTY_MINTUES = 30 * 60 * 1000; const config= { user: "someUser", password: "somePwd", database: "someDatabase", host: "someHOst" } app.keys = ['your-session-secret'] app.use(session({ store: new MysqlStore(config), rolling: true, cookie: { maxage:THIRTY_MINTUES } }))