1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/node_modules/level-write-stream
2022-07-15 11:08:01 -03:00
..
.npmignore New updates and modules 2022-07-15 11:08:01 -03:00
index.js New updates and modules 2022-07-15 11:08:01 -03:00
LICENCE New updates and modules 2022-07-15 11:08:01 -03:00
package.json New updates and modules 2022-07-15 11:08:01 -03:00
README.md New updates and modules 2022-07-15 11:08:01 -03:00

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!

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