You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iotcat 74338fbb93 auto update 5 years ago
..
.jshintrc auto update 5 years ago
.npmignore auto update 5 years ago
.travis.yml auto update 5 years ago
README.md auto update 5 years ago
deferred-leveldown.js auto update 5 years ago
package.json auto update 5 years ago
test.js auto update 5 years ago

README.md

DeferredLevelDOWN

A mock LevelDOWN implementation that queues operations while a real LevelDOWN instance is being opened.

LevelDB Logo

Build Status

NPM

DeferredLevelDOWN implements the basic AbstractLevelDOWN API so it can be used as a drop-in replacement where LevelDOWN is needed.

put(), get(), del() and batch() operations are all queued and kept in memory until a new LevelDOWN-compatible object can be supplied.

The setDb(db) method is used to supply a new LevelDOWN object. Once received, all queued operations are replayed against that object, in order.

batch() operations will all be replayed as the array form. Chained-batch operations are converted before being stored.

Contributing

DeferredLevelDOWN 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 CONTRIBUTING.md file for more details.

Contributors

DeferredLevelDOWN is only possible due to the excellent work of the following contributors:

Rod VaggGitHub/rvaggTwitter/@rvagg
John ChesleyGitHub/cheslesTwitter/@chesles
Jake VerbatenGitHub/raynosTwitter/@raynos2
Dominic TarrGitHub/dominictarrTwitter/@dominictarr
Max OgdenGitHub/maxogdenTwitter/@maxogden
Lars-Magnus SkogGitHub/ralphtheninjaTwitter/@ralphtheninja
David BjörklundGitHub/keslaTwitter/@david_bjorklund
Julian GruberGitHub/juliangruberTwitter/@juliangruber
Paolo FragomeniGitHub/hij1nxTwitter/@hij1nx
Anton WhalleyGitHub/No9Twitter/@antonwhalley
Matteo CollinaGitHub/mcollinaTwitter/@matteocollina
Pedro TeixeiraGitHub/pgteTwitter/@pgte
James HallidayGitHub/substackTwitter/@substack

Copyright (c) 2013 DeferredLevelDOWN contributors (listed above).

DeferredLevelDOWN is licensed under an MIT +no-false-attribs license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.