Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

espimarisa/session-rethinkdb-ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f0d1370 · Sep 7, 2024

History

42 Commits
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024
Sep 7, 2024

Repository files navigation

session-rethinkdb-ts

A RethinkDB express-session store.

Maintenance Mode

This package is in maintenance mode and will only receive security and major bug-fix updates.

Installation

bun add session-rethinkdb-ts

Usage

For a list of valid connectOptions, see the typings for rethinkdb-ts. Additionally, you can pass an already existing store via the 2nd paramater.

import { RethinkDBStore } from "session-rethinkdb-ts";
import express from "express";
import session from "express-session";

const app = express();

// Creates the store
const store = new RethinkDBStore({
  // RethinkDB connection options.
  connectOptions: {
    db: "db",
  },
  sessionTable: "session", // RethinkDB table to store session info to. Defaults to "session".
  sessionTimeout: 86400000, // How long a session ID is valid for. Defaults to 1 day.
  flushTimeout: 60000, // How long to wait before flushing data. Defaults to 1 minute.
});

// Uses express session with the store
// Valid options: https://github.com/expressjs/session#sessionoptions
app.use(session({
  store: store,
  saveUninitialized: false,
}));

// The rest of your Express server code...

License

MIT