connect-dynamodb is a DynamoDB session store backed by the aws-sdk
$ npm install connect-dynamodb
- One of the following:
client
An existing AWS DynamoDB object you normally get fromnew AWS.DynamoDB()
AWSConfigPath
Path to JSON document containing your AWS credentials (defaults to loading credentials from environment variables) and any additional AWS configuration optionsAWSConfigJSON
JSON object containing your AWS configuration options
AWSRegion
Optional AWS region (defaults to 'us-east-1', ignored if usingAWSConfigPath
orAWSConfigJSON
)table
Optional DynamoDB server session table name (defaults to "sessions")hashKey
Optional hash key (defaults to "id")prefix
Optional key prefix (defaults to "sess")reapInterval
Optional - how often expired sessions should be cleaned up (defaults to 600000)
var options = {
// Name of the table you would like to use for sessions.
// Defaults to 'sessions'
table: 'myapp-sessions',
// Optional path to AWS credentials (loads credentials from environment variables by default)
// AWSConfigPath: './path/to/credentials.json',
// Optional JSON object of AWS configuration options
// AWSConfigJSON: {
// region: 'us-east-1',
// correctClockSkew: true
// }
// Optional. How often expired sessions should be cleaned up.
// Defaults to 600000 (10 minutes).
reapInterval: 600000
};
var connect = require('connect'),
DynamoDBStore = require('connect-dynamodb')(connect);
connect()
.use(connect.cookieParser())
.use(connect.session({ store: new DynamoDBStore(options), secret: 'keyboard cat'}))
Or with express 3.x.x
DynamoDBStore = require('connect-dynamodb')(express);
var app = express(
express.cookieParser(),
express.session({ store: new DynamoDBStore(options), secret: 'keyboard cat'})
);
Or with express 4.x.x
var app = express();
var session = require('express-session');
DynamoDBStore = require('connect-dynamodb')({session: session});
app.use(session({ store: new DynamoDBStore(options), secret: 'keyboard cat', resave: true, saveUninitialized: true}));
Some people that have added features and fixed bugs in connect-dynamodb
other than me.
- Eric Abouaf
- James Bloomer
- Roy Lines
- B2M Development
- Kristian Ačkar
- doapp-ryanp
- Bryce Larson
- Etienne Adriaenssen
- Michael Irigoyen
Thanks!
connect-dynamodb is licensed under the MIT license.
I made this in my spare time, so if you find it useful you can donate at my BTC address: 13Bzg4reJJt43wU1QsPSCzyFZMLhJbRELA
. Thank you very much!