@brightcove/hono-sessions
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

Hono Sessions

package-info NPM NodeJS

A session manager for Hono that uses DynamoDB as session storage by default. Supports session retrieval by cookie or access token.

Install

npm install @brightcove/hono-sessions --save

Usage

A middleware is provided that allows configuration of the session options and adds the object sessions to the Hono context.

import { Hono } from 'hono';
import { DynamoDBDocument } from '@aws-sdk/lib-dynamodb';
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';
import { sessions, DynamoDBAdapter } from '@brightcove/hono-sessions';

const client = new DynamoDBClient({
    endpoint: 'http://localhost:4566',
    region: 'us-east-1'
});
const document = DynamoDBDocument.from(client);

const app = new Hono();

app.use(sessions({
    adapter: new DynamoDBAdapter({
        tableName: 'my-table',
        primaryKey: 'pk',
        sortKey: 'sk',
        expiresAttr: 'expires',
        document
    })
    ...
}));

app.get('/my_route', async (c, next) => {
    const session = c.get('session');
});

Session Storage

DynamoDBAdapter is provided by default for use with DynamoDB as the storage backend, but alternate backends can be used if they conform to Adapter

export interface Adapter {
    get: (key: Record<string, string>) => Promise<{ session: any, cookie?: any, token?: any } | undefined>;
    set: (key: Record<string, string>, data: any, cookie?: any, token?: string, expires?: number) => Promise<void>;
    delete: (key: Record<string, string>) => Promise<void>;
    defaultKeyFn: () => (sessionId: string) => Record<string, string>;
}

Session Retrieval

Cookie

When configured to use cookies the library automatically manages setting/unsetting any any options configured

app.use(sessions({
    adapter: new DynamoDBAdapter({
        tableName: 'my-table',
        primaryKey: 'pk',
        sortKey: 'sk',
        expiresAttr: 'expires',
        document
    }),
    cookie: {
        name: 'session_storage',
        maxAge: 60000,
        secure: true
    }
}));

Access Token

When configured to use tokens, the library looks for a token in the header Authorization: Bearer <token> or in the query parameter token.

Note: If both are included, the query parameter takes precedence

app.use(sessions({
    adapter: new DynamoDBAdapter({
        tableName: 'my-table',
        primaryKey: 'pk',
        sortKey: 'sk',
        expiresAttr: 'expires',
        document
    }),
    token: {
        maxAge: 60000,
        payload: (session) => ({ user_id: session.user.id })
    }
}));

Options

DynamoDBAdapter Options

Param Type Description Required Default
tableName string DynamoDB table name yes
primaryKey string DynamoDB primary key no pk
sortKey string DynamoDB sort key no sk
expiresAttr string DynamoDB TTL attribute name. This will be used for setting session expiration and auto expiration behavior no expires
document DynamoDBDocument https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-lib-dynamodb/Class/DynamoDBDocument yes

Middleware Options

Param Type Description Required Default
adapter Adapter A valid Adapter instance yes
cookie object Accepts all the Hono cookie options yes
cookie.name string The session cookie name no sid.bgs
secret string The secret used for signing cookies yes, if cookie.secure or token, otherwise no
logger Logger What will be used for logging errors (ie. logger.error()). console is used by default if not specified no console
token.maxAge number The token expiration in seconds from the time it's generated yes, if using token
token.queryParam Function Specifies the query param that is checked for the token no token
token.payload Function By default tokens only contain the sid and exp in the payload, but this allows additional data to be included with a function with the signature (session) => object. no
allowOverwrite boolean Determines whether a new session can be started when the current one hasn't been ended no true

Starting a session

This creates the session item in the database, initialized with a serialized version of any data passed into the function (must be serializable or this will fail) and sets the session cookie on the response.

import { startSession } from '@brightcove/hono-sessions';

app.get('/my_route', async (c, next) => {
    await startSession(c, {
        user_id: 1234,
        name: 'user'
    });
    ...
});

Updating a session

The context exposes both the session and sessionCookie, which can freely be edited.

app.get('/my_route', async (c, next) => {
    const session = c.get('session');
    const cookie = c.get('sessionCookie');

    session.newField = 'new value';
    ...
});

If any of the updated cookie options are invalid, this will fail.

When the request is finalizing, if either has been updated the changes will automatically be synced back to storage.

If any of the cookie options were updated an updated cookie will be set in the response.

Ending a session

This deletes the session from the database and the session cookie in the response if there was one.

import { endSession } from '@brightcove/hono-sessions';

app.get('/my_route', async (c, next) => {
    await endSession(c);
    ...
});

If the library is configured to use token retrieval, the token can also be passed in for cases where it isn't found in the normal locations

app.get('/my_route', async (c, next) => {
    await endSession(c, token);
    ...
});

Getting the access token

If the library is configured to use token retrieval, and there's a valid session, the access token can be found in the context

app.get('/my_route', async (c, next) => {
    const token = c.get('sessionToken');
    ...
});

Readme

Keywords

none

Package Sidebar

Install

npm i @brightcove/hono-sessions

Weekly Downloads

40

Version

1.0.8

License

ISC

Unpacked Size

44.6 kB

Total Files

15

Last publish

Collaborators

  • rwbarber2
  • aperezbrightcove
  • ireyes94
  • brightcove-admin
  • tedk
  • abradley-brightcove
  • bc-alive
  • lasanchezc
  • marguinbc
  • brightcove-user
  • kmason
  • cbarstow
  • hikeh
  • myerramalla
  • pdias
  • jwhisenant
  • mfregozo
  • adavila1
  • bc-acgarcia
  • rjune
  • fsalazarbc
  • jonbwalsh
  • khaipham
  • wswanbeck
  • gastafurov
  • adalwani
  • ekelson-bcove
  • syseng
  • mcarreiro
  • hwoodbury
  • jblaker
  • bcmauleon
  • paco_oblea_bc
  • biswaranjan
  • barroyo
  • bmartinez
  • bc-jcarlson
  • eledezma
  • jcueto
  • erodrigues
  • psousa
  • marcogaray
  • javibright
  • bcpsalas
  • etobin
  • ackbabe
  • omartinez
  • mgonzalez_bc
  • pdohertybcov
  • muthukumar.bc
  • bzizmond
  • jmpmacedo
  • scorreia
  • lescorcio
  • cavieira
  • arunjeyaprasad
  • bvilvanathan
  • rociosantos
  • agarciabcov
  • attinder
  • lauralopez
  • skumar85
  • hrodriguez2
  • jasilvaantonio
  • palvarezbc
  • ericramos
  • carlosabajo
  • ingrid.s.cruz
  • luis_fernando_lopez_ruiz
  • vishal64
  • tresa.baji
  • luis.garcia.brightcove
  • rodrigofdz
  • pgutierrezgil
  • harish17
  • jjeyaprakash
  • rrajendran1698
  • jlomeli
  • tsraveling_bc
  • sjimenez
  • rwenger_brightcove
  • rujordan
  • niklagbrightcove
  • stuartmh
  • jherrerabcov
  • mshiwal
  • ptamizh
  • akamalakkannan
  • roman-bc
  • jvaldez1
  • mdeltorobcov
  • tnwanna
  • bsahlas.npm
  • dherrera1109
  • hswaminathan
  • echengbc
  • sbarrettbc
  • ldominguez
  • rtezera
  • poneill-bcov
  • v.kozlov_bc
  • kreynolds
  • bc-srimron-soutter
  • jguerra
  • michaelmccarthybc
  • randresf
  • bgs-devops
  • bcmneil
  • bcbclifford
  • brianhsu
  • mcho-bc
  • carredondo
  • kpandiyarajan
  • lvohra
  • sharanya.muruganandam
  • m.morrison
  • amillerbrightcove
  • kevin.schick
  • dsalnikov
  • cloewer_bc
  • dawnpacko
  • xgarcia_npm
  • awaldron
  • ebertaud
  • sstevanus
  • msivalls
  • eolvera
  • juan-sanchez
  • jose.luis.sanchez
  • ttabrilla-bc
  • lmelchorx1
  • joeylesh
  • pedro-cruz
  • rsilva_brightcove
  • abarstowbc
  • sbarathan
  • gestrada-br
  • albertogomez
  • miklospocsaji_bc
  • uomar
  • ddashkevich
  • walterseymourbc
  • imorones
  • norma.gonzalez
  • jfloresbc
  • aviel_resnick
  • alexey.kremsa
  • mlopez.b
  • melinda.darvasi
  • alfredo-reyes
  • daniel_campos
  • skarukamanna
  • jterranova
  • areis10
  • vmnavarro
  • maraiza
  • adambertalanbc
  • gabor.kiacz.brightcove
  • dgonzalez89
  • rwinger
  • ssah
  • sravan.pbr
  • apenigalapati
  • ijunaidf
  • lmaultsby
  • bcc-bfranklin
  • mgoncalves
  • mbalasubramaniam
  • cognatusbgs
  • hugocjim
  • madhu_g
  • arevelo
  • sachin-brightcove
  • bc-jcuevas