# simple-session-store

> A simple in-memory session store for humble-session.

Latest version **0.1.1** (published 2015-10-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install simple-session-store
pnpm add simple-session-store
yarn add simple-session-store
bun add simple-session-store
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2015-10-22 |
| First published | 2015-10-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Zoltan Kochan |
| Maintainers | zkochan |
| Keywords | session, store |

## Links

- npm: https://www.npmjs.com/package/simple-session-store
- Repository: https://github.com/zkochan/simple-session-store
- Homepage: https://github.com/zkochan/simple-session-store#readme
- Issues: https://github.com/zkochan/simple-session-store/issues
- npm.io page: https://npm.io/package/simple-session-store

## Alternatives

- [@clerk/clerk-expo](https://npm.io/package/@clerk/clerk-expo.md) — 133.6K weekly downloads
- [@pothos/plugin-authz](https://npm.io/package/@pothos/plugin-authz.md) — 12.4K weekly downloads
- [@bounded-sh/client](https://npm.io/package/@bounded-sh/client.md) — 3.2K weekly downloads
- [@oxyhq/services](https://npm.io/package/@oxyhq/services.md) — 2.3K weekly downloads
- [@luigi-project/plugin-auth-oauth2](https://npm.io/package/@luigi-project/plugin-auth-oauth2.md) — 2.3K weekly downloads

## Recent versions

- 0.1.1 (latest) — 2015-10-22
- 0.1.0 — 2015-10-22

## README

# simple-session-store

A simple in-memory session store for [humble-session](https://github.com/zkochan/humble-session).

[![Dependency Status](https://david-dm.org/zkochan/simple-session-store/status.svg?style=flat)](https://david-dm.org/zkochan/simple-session-store)
[![Build Status](https://travis-ci.org/zkochan/simple-session-store.svg?branch=master)](https://travis-ci.org/zkochan/simple-session-store)
[![npm version](https://badge.fury.io/js/simple-session-store.svg)](http://badge.fury.io/js/simple-session-store)


## Installation

```
npm i --save simple-session-store
```


## Usage

Register the plugin:

```js
var Hapi = require('hapi');
var simpleSessionStore = require('simple-session-store');
var humbleSession = require('humble-session');

var server = new Hapi.Server();

server.register({
    register: simpleSessionStore
  }, {
    register: humbleSession,
    options: {
      password: 'secret',
      sessionStoreName: 'simple-session-store'
    }
  }, function(err) {
    /* ... */
});
```


## License

MIT

---
_Source: https://npm.io/package/simple-session-store · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
