Giter Site home page Giter Site logo

marcellowy / koa-session-store2 Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 178 KB

Middleware for Koa2 to get/set session use with custom stores such as Redis/Memcached/Mysql

License: MIT License

JavaScript 100.00%
koa-session koa-session-store session-store

koa-session-store2's Introduction

koa-session-store2

Requires Node 7.6 or greater for async/await support

Getting Started

Installation

$ npm install koa-session-store2

Running Tests

Notice: please check test/config.js content
$ npm install
$ npm test

Examples

const session = require('koa-session');
const Koa = require('koa');
const app = new Koa();

// memcached, redis, mysql example
// Notice: Requires mysql 5.6 or grater for default value now()
const {MemcachedStore, RedisStore, MysqlStore} = require('koa-session-store2');

app.keys = ['some secret hurr'];
 
const CONFIG = {
    key: 'koa:sess', /** (string) cookie key (default is koa:sess) */
    /** (number || 'session') maxAge in ms (default is 1 days) */
    /** 'session' will result in a cookie that expires when session/browser is closed */
    /** Warning: If a session cookie is stolen, this cookie will never expire */
    maxAge: 86400000,
    autoCommit: true, /** (boolean) automatically commit headers (default true) */
    overwrite: true, /** (boolean) can overwrite or not (default true) */
    httpOnly: true, /** (boolean) httpOnly or not (default true) */
    signed: true, /** (boolean) signed or not (default true) */
    rolling: false, /** (boolean) Force a session identifier cookie to be set on every response. The expiration is reset to the   original maxAge, resetting the expiration countdown. (default is false) */
    renew: false, /** (boolean) renew session when session is nearly expired, so we can always keep user logged in. (default is false)*/
    // store: new MemcachedStore(), /* defualt memcached config: localhost:11211 example: https://www.npmjs.com/package/memcached */
    // store: new RedisStore(),
    store: new MysqlStore('t_', 
        {
          host     : '',
          user     : '',
          password : '',
          database : ''
        }
    ),
};
 
app.use(session(CONFIG, app));

app.use(ctx => {
    // ignore favicon
    if (ctx.path === '/favicon.ico') return;
  
    let n = ctx.session.views || 0;
    ctx.session.views = ++n;
    ctx.body = n + ' views';
});
 
app.listen(3000);
console.log('listening on port 3000');

License

MIT

koa-session-store2's People

Contributors

dependabot[bot] avatar marcellowy avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.