You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 3, 2023. It is now read-only.
yarn add koa-session-dynamodb-store
or
npm install --save koa-session-dynamodb-store
Usage
Usage within koa:
constkoaSession=require("koa-session");constDynamoDBStore=require('koa-session-dynamodb-store');constoptions={table: {autoCreate: true// You should set this option to true if you want to automatically create a DynamoDB table for your session.}}app.use(koaSession({store: newDynamoDBStore(options),
...
},app));
{
"table": {
"name": "<NAME OF THE DYNAMO TABLE>", // default, sessions
"hashKey": "<NAME OF THE ID FIELD>", // default, sessionId
"ttlKey": "<NAME OF THE DYNAMO TTL FIELD>", // default, expires
"useTtlExpired": "<BOOLEAN>", // default, true
"readCapacityUnits": "<NUMBER>", // default,: 5
"writeCapacityUnits": "<NUMBER>" // default, 5
"autoCreate": "<BOOLEAN>" // default, false
},
"dynamoConfig": {
"accessKeyId": "<AWS ACCESS KEY>", // default
"secretAccessKey": "<AWS ACCESS KEY SECRET>", // default
"region": "<AWS REGION>", // default, If you are using the local version of DynamoDB, it must be a word that starts with local.
"endpoint": "<DYNAMO ENDPOINT>" // default
}
}
The table configuration is optional. The missing properties will be replaced by defaults.
Changing the table.ttlKey property may be ignored if the TTL attribute of DynamoDB is enabled. In this case, use the TTL property of DynamoDB as a priority.
If you have recently changed the value of table.useTtlExpired, the DynamoDB service will return an error. This will not work, please try again later.
Changing the readCapacityUnits and writeCapacityUnits frequently can also cause the DynamoDB service to return an error.
If option table.autoCreate is set to true the store will try to create a session table automatically during its initialization. Otherwise in order to initialize the table developer can explicitly call
awaitstore.createTableIfDontExists();
at the right point according to an application architecture.
The dynamoConfig can be optional if the following environment variables are set: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_REGION (which are present on Lambda Functions running on AWS). All properties from AWS.DynamoDB constructor can be informed in this structure.
About
It is extension of koa-session that uses DynamoDB as session store inspired by dynamodb-store.