Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

koa-sqlite3-session

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

koa-sqlite3-session

sqlite3 adaption for koa-generic-session

latest
Source
npmnpm
Version
2.0.2
Version published
Maintainers
1
Created
Source

koa-sqlite3-session

Build Status Coverage Status npm version License

Usage

koa-sqlite3-session works with koa-generic-session (a generic session middleware for koa).

const SQLite3Store = require('koa-sqlite3-session');

app.use(session({
  store: new SQLite3Store('filename.db', {
    // Options specified here
  })
}));

Example

see example

Options

  • verbose: Enables node-sqlite3's verbose mode
  • ttl: Default cookie expire time, in milliseconds
  • interval: Interval for flushing expired sessions

API

module(filename, [options])

Initialize the SQLite3 connection with the given path and optionally provided options (see above). filename param can be :memory: to use in-memory database. The variable session below references this. Should always use as a constructor.

session.get(sid)

Promise that gets a session by id. Returns parsed JSON if exists, otherwise null.

session.set(sid, sess, ttl)

Promise that sets a JSON session by id.

session.end(sid)

Promise that ends a session by id.

session.shutdown()

Promise that closes database connection.

session.flush()

Promise that removes all expired session data.

License

(The MIT License)

Copyright (c) 2016 CodeColorist and other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

sqlite3

FAQs

Package last updated on 04 Feb 2023

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