# crown-memory-store

> Memory store for Crown

Latest version **1.0.0** (published 2015-09-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install crown-memory-store
pnpm add crown-memory-store
yarn add crown-memory-store
bun add crown-memory-store
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-09-20 |
| First published | 2015-09-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Vadim |
| Maintainers | vdemedes |

## Links

- npm: https://www.npmjs.com/package/crown-memory-store
- Repository: https://github.com/vdemedes/crown-memory-store
- Issues: https://github.com/vdemedes/crown-memory-store/issues
- npm.io page: https://npm.io/package/crown-memory-store

## Dependencies (1)

- [pinkie-promise](https://npm.io/package/pinkie-promise.md) ^1.0.0

## Recent versions

- 1.0.0 (latest) — 2015-09-20

## README

# crown-memory-store [![Circle CI](https://circleci.com/gh/vdemedes/crown-memory-store.svg?style=svg)](https://circleci.com/gh/vdemedes/crown-memory-store)

Memory store for [Crown](https://github.com/vdemedes/crown).


### Installation

```
$ npm install crown-memory-store --save
```


### Usage

```js
const MemoryStore = require('crown-memory-store');

let store = new MemoryStore();

store.get('some-key').then(function (value) {
  // done
});

store.set('some-key', 'some-value').then(function () {
  // done
});

store.destroy('some-key').then(function () {
  // done
});
```


### Tests

[![Circle CI](https://circleci.com/gh/vdemedes/crown-memory-store.svg?style=svg)](https://circleci.com/gh/vdemedes/crown-memory-store)

```
$ make test
```


### License

MIT © [vdemedes](https://github.com/vdemedes)

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