# cose

> Multi-store Connect Session.

Latest version **0.0.2** (published 2014-05-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install cose
pnpm add cose
yarn add cose
bun add cose
```

## 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.0.2 |
| Published | 2014-05-15 |
| First published | 2014-05-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Tao Yuan |
| Maintainers | torworx |
| Keywords | connect, express, session |

## Links

- npm: https://www.npmjs.com/package/cose
- Repository: https://github.com/taoyuan/cose
- Issues: https://github.com/taoyuan/cose/issues
- npm.io page: https://npm.io/package/cose

## Dependencies (1)

- [semver](https://npm.io/package/semver.md) ^2.3.0

## 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
- [@luigi-project/plugin-auth-oauth2](https://npm.io/package/@luigi-project/plugin-auth-oauth2.md) — 2.3K weekly downloads
- [@nocobase/plugin-verification](https://npm.io/package/@nocobase/plugin-verification.md) — 2.0K weekly downloads

## Recent versions

- 0.0.2 (latest) — 2014-05-15
- 0.0.1 — 2014-05-15

## README

cose
====

Multi-store Connect Session.

## Getting Started

### Installation

```
npm install cose --save
```

### Usage

#### For express 3.x
```
var express = require('express');
var cose = require('cose');
...
app(express.session({secret: 'some secret', store: cose.store({driver: 'redis', ...})}));
```

#### For express 4.x
```
var session = require('express-session');
var cose = require('cose');
...
app(session({secret: 'some secret', store: cose.store({driver: 'redis',...})}));
```

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