Socket
Book a DemoInstallSign in
Socket

express-session-etcd3

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-session-etcd3

An ETCD v3 store adapter for express-session using etcd3 client.

latest
Source
npmnpm
Version
1.2.4
Version published
Maintainers
1
Created
Source

express-session-etcd3

CircleCI

An ETCD v3 store adapter for express-session using etcd3 client.

Setup

Install this package with all necessary peer dependencies:

npm install express-session-etcd3 express-session etcd3

Pass the necessary configuration to access your etcd v3 base into the Etcd3Store constructor as options:

var session = require('express-session');
var Etcd3Store = require('express-session-etcd3');

app.use(session({
    store: new Etcd3Store(options),
    secret: 'keyboard cat',
    resave: false
}));

Options

You can find all the available options at the documentation.

Documentation

Our TypeDoc docs are available here.

Our test cases are also quite readable.

Contributing

You can find all the steps at the Contributing Guide.

Credits

This project was easily bootstrapped with TypeScript library starter, thanks for sharing it!

License

MIT

Keywords

etcd

FAQs

Package last updated on 07 May 2018

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