# level-write-stream

> A writeStream implementation for leveldb

Latest version **1.0.0** (published 2014-08-25) · 0 weekly downloads

## Install

```sh
npm install level-write-stream
pnpm add level-write-stream
yarn add level-write-stream
bun add level-write-stream
```

## 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 | 2014-08-25 |
| First published | 2012-11-27 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13 |
| Author | Raynos |
| Maintainers | raynos |

## Links

- npm: https://www.npmjs.com/package/level-write-stream
- Repository: https://github.com/Raynos/level-write-stream
- Issues: https://github.com/Raynos/level-write-stream/issues
- npm.io page: https://npm.io/package/level-write-stream

## Dependencies (1)

- [end-stream](https://npm.io/package/end-stream.md) ~0.1.0

## Recent versions

- 1.0.0 (latest) — 2014-08-25
- 0.1.1 — 2014-08-25
- 0.1.0 — 2012-11-27

## README

# level-write-stream

A writeStream implementation for leveldb

## Example

This implements the writeStream logic for a levelup interface.

Just pass it a db with `put` and `batch` method and it will do
    the rest!

```js
var LevelWriteStream = require("level-write-stream")

var db = someleveldb()

var writeStream = LevelWriteStream(db)

var stream = writeStream(options)

stream.write({
    key: key
    , value: value
})
```

## Installation

`npm install level-write-stream`

## Contributors

 - Raynos

## MIT Licenced

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