Indexed by TopGit from live GitHub metadata: koajs/session has 908 stars, written primarily in TypeScript. Simple session middleware for koa
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Simple session middleware for Koa. Defaults to cookie-based sessions and supports external stores.
Installation
npm install koa-session
Notice
7.x has a breaking change: drop Node.js < 18.19.0 support. And it support CommonJS and ESM both.
6.x changed the default cookie key from koa:sess to koa.sess to ensure set-cookie value valid with HTTP spec.
See issue.
If you want to be compatible with the previous version, you can manually set config.key to koa:sess.
Example
View counter example:
import Koa from 'koa';
import session from 'koa-session';
const app = new Koa();
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)*/
secure: true, /** (boolean) secure cookie*/
sameSite: null, /** (string) session cookie sameSite options (default null, do not provide this key if you are not restricting sameSite) */
};
app.use(session(CONFIG, app));
// or if you prefer all default config, just use => app.use(session(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');
API
Options
The cookie name is controlled by the key option, which defaults
to "koa.sess". All other options are passed to ctx.cookies.get() and
ctx.cookies.set() allowing you to control security, domain, path,
and signing among other settings.
Custom encode/decode Support
Use options.encode and options.decode to customize your own encode/decode methods.
Hooks
valid(): valid session value before use it
beforeSave(): hook before save session
External Session Stores
The session is stored in a cookie by default, but it has some disadvantages:
Session is stored on client side unencrypted
Browser cookies always have length limits
You can store the session content in external stores (Redis, MongoDB or other DBs) by passing options.store with three methods (these need to be async functions):
get(key, maxAge, { rolling, ctx }): get session object by key
set(key, sess, maxAge, { rolling, changed, ctx }): set session object for key, with a maxAge (in ms)
destroy(key, {ctx}): destroy session for key
Once you pass options.store, session storage is dependent on your external store -- you can't access the session if your external store is down. Use external session stores only if necessary, avoid using session as a cache, keep the session lean, and store it in a cookie if possible!
The way of generating external session id is controlled by the options.genid(ctx), which defaults to uuid.v4().
If you want to add prefix for all external session id, you can use options.prefix, it will not work if options.genid(ctx) present.
If your session store requires data or utilities from context, opts.ContextStore is also supported. ContextStore must be a class which claims three instance methods demonstrated above. new ContextStore(ctx) will be executed on every request.
Events
koa-session will emit event on app when session expired or invalid:
session:missed: can't get session value from external store.
session:invalid: session value is invalid.
session:expired: session value is expired.
Custom External Key
External key is used the cookie by default, but you can use options.externalKey to customize your own external key methods. options.externalKey with two methods:
get(ctx): get the external key
set(ctx, value): set the external key
Session#isNew
Returns true if the session is new.
if (this.session.isNew) {
// user has not logged in
} else {
// user has already logged in
}
Session#maxAge
Get cookie's maxAge.
Session#maxAge=
Set cookie's maxAge.
Session#externalKey
Get session external key, only exist when external session store present.
Session#save()
Save this session no matter whether it is populated.
Session#manuallyCommit()
Session headers are auto committed by default. Use this if autoCommit is set to false.
The most recent commit recorded on koajs/session was 1.4 years ago, based on the GitHub push timestamp. The repository has 116 forks — one of the better signals of community interest.
How many stars does koajs/session have?
koajs/session has 908 GitHub stars — refresh the page for the live number, or check github.com/koajs/session. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is koajs/session open source?
Yes — koajs/session ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/koajs/session.
What is koajs/session?
koajs/session (koajs/session) is a TypeScript project on GitHub. From the project's own README: Simple session middleware for koa
What language is koajs/session written in?
koajs/session is written primarily in TypeScript. GitHub's language field is based on the largest share of bytes in the default branch.
What license does koajs/session use?
koajs/session is released under the MIT license. Always verify the LICENSE file directly on GitHub for the authoritative terms — license strings can be edited out of sync with a project's actual stance.
Where do I read more about koajs/session?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/koajs/session is the definitive source.
Read full README in the tab above.
Curious whether session is right for you?
Let ChatGPT, Claude, or Perplexity look into it — click below and see what AI actually says about session.