connect-etcd

0.0.2 • Public • Published

Connect Etcd

============

Build Status

NPM

connect-etcd is a Etcd session store for express backed by node-etcd

Installation

	$ npm install connect-etcd

Options

- `url` Etcd host url
- `port` Etcd port
- `ttl` time-to-live (expiration) in seconds that the key will last for. By default the maxAge of the session cookie will be used.

Usage

var session = require('express-session');
var EtcdStore = require('connect-etcd')(session);

app.use(session({
	store: new EtcdStore(options),
	secret: 'hobknob'
}));

License

MIT

/connect-etcd/

    Package Sidebar

    Install

    npm i connect-etcd

    Weekly Downloads

    6

    Version

    0.0.2

    License

    MIT

    Last publish

    Collaborators

    • matteofigus
    • ryantomlinson