Socket
Socket
Sign inDemoInstall

@brightcove/hono-sessions

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brightcove/hono-sessions

A session manager for Hono. Uses cookies and DynamoDB as the session storage backend


Version published
Weekly downloads
29
decreased by-43.14%
Maintainers
0
Weekly downloads
 
Created
Source

Hono Sessions

package-info NPM NodeJS

A session manager for Hono. Uses cookies and DynamoDB as the session storage backend

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 { DynamoDBConnector } from '@brightcove/dynamodb-connector';
import { sessions } from '@brightcove/hono-sessions';

// Localstack configuration example
const client = new DynamoDBClient({
    endpoint: 'http://localhost:4566',
    region: 'us-east-1'
});

const app = new Hono();

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

app.get('/my_route', async (c, next) => {
    const session = c.get('session');
});
Options
ParamTypeDescriptionRequiredDefault
dynamoobjectDynamoDB optionsyes
dynamo.tableNamestringDynamoDB table nameyes
dynamo.primaryKeystringDynamoDB primary keynopk
dynamo.sortKeystringDynamoDB sort keynosk
dynamo.expiresAttrstringDynamoDB TTL attribute name. This will be used for setting session expiration and auto expiration behaviornoexpires
dynamo.clientDynamoDBClienthttps://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-dynamodb/Class/DynamoDBClient/yes
cookieobjectAccepts all the Hono cookie optionsyes
namestringThe session cookie namenosid.bgs
secretstringThe secret used for signing cookiesyes, if cookie.secure, otherwise no
loggerLoggerWhat will be used for logging errors (ie. logger.error()). console is used by default if not specifiednoconsole
allowOverwritebooleanDetermines whether a new session can be started when the current one hasn't been endednotrue

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 sessions object exposes both the session and cookie, 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 the database.

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.

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

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

FAQs

Package last updated on 29 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc