# level-mem

> A convenience package bundling LevelUP & MemDOWN

Latest version **6.0.1** (published 2021-10-02) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install level-mem
pnpm add level-mem
yarn add level-mem
bun add level-mem
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 6.0.1 |
| Published | 2021-10-02 |
| First published | 2013-10-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=10 |
| Dependencies | 2 |
| Unpacked size | 13.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 24 |
| Maintainers | vweevers, rvagg, ralphtheninja |
| Keywords | level, leveldb, stream, database, db, store, storage, json |

## Links

- npm: https://www.npmjs.com/package/level-mem
- Repository: https://github.com/Level/mem
- Issues: https://github.com/Level/mem/issues
- npm.io page: https://npm.io/package/level-mem

## Dependencies (2)

- [memdown](https://npm.io/package/memdown.md) ^6.1.1
- [level-packager](https://npm.io/package/level-packager.md) ^6.0.1

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 6.0.1 (latest) — 2021-10-02
- 6.0.0 — 2021-10-01
- 5.0.1 — 2019-09-08
- 5.0.0 — 2019-09-06
- 4.0.0 — 2019-03-30
- 3.0.1 — 2018-06-24
- 3.0.0 — 2018-05-23
- 2.0.0 — 2018-02-14
- 1.0.2 — 2017-11-28
- 1.0.1 — 2017-10-04
- 1.0.0 — 2017-08-17
- 0.18.0 — 2013-12-05
- 0.17.0 — 2013-10-12

## README

# level-mem

> A convenience package that bundles [`levelup`](https://github.com/Level/levelup), [`encoding-down`](https://github.com/Level/encoding-down) and [`memdown`](https://github.com/Level/memdown) and exposes `levelup` on its export.

[![level badge][level-badge]](https://github.com/Level/awesome)
[![npm](https://img.shields.io/npm/v/level-mem.svg)](https://www.npmjs.com/package/level-mem)
[![Node version](https://img.shields.io/node/v/level-mem.svg)](https://www.npmjs.com/package/level-mem)
[![Test](https://img.shields.io/github/workflow/status/Level/mem/Test?label=test)](https://github.com/Level/mem/actions/workflows/test.yml)
[![Coverage](https://img.shields.io/codecov/c/github/Level/mem?label=&logo=codecov&logoColor=fff)](https://codecov.io/gh/Level/mem)
[![Standard](https://img.shields.io/badge/standard-informational?logo=javascript&logoColor=fff)](https://standardjs.com)
[![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org)
[![Donate](https://img.shields.io/badge/donate-orange?logo=open-collective&logoColor=fff)](https://opencollective.com/level)

## Usage

Use this package to avoid having to explicitly install `memdown` when you want to use `memdown` with `levelup` for non-persistent `levelup` data storage.

```js
const level = require('level-mem')

// Create our in-memory database
const db = level()

// Put a key & value
await db.put('name', 'Level')

// Get value by key
const value = await db.get('name')
console.log(value)
```

See [`levelup`](https://github.com/Level/levelup) and [`memdown`](https://github.com/Level/memdown) for more details.

_If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md)._

## Contributing

[`Level/mem`](https://github.com/Level/mem) is an **OPEN Open Source Project**. This means that:

> Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

See the [Contribution Guide](https://github.com/Level/community/blob/master/CONTRIBUTING.md) for more details.

## Donate

Support us with a monthly donation on [Open Collective](https://opencollective.com/level) and help us continue our work.

## License

[MIT](LICENSE)

[level-badge]: https://leveljs.org/img/badge.svg

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