Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
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.
 
 
 
 
 
 
Budibase Helm Bot cc8a16a1e8 Helm Release: 1.2.36 4 years ago
..
.travis.yml Helm Release: 1.2.36 4 years ago
CHANGELOG.md Helm Release: 1.2.36 4 years ago
CONTRIBUTORS.md Helm Release: 1.2.36 4 years ago
LICENSE.md Helm Release: 1.2.36 4 years ago
README.md Helm Release: 1.2.36 4 years ago
UPGRADING.md Helm Release: 1.2.36 4 years ago
deferred-iterator.js Helm Release: 1.2.36 4 years ago
deferred-leveldown.js Helm Release: 1.2.36 4 years ago
package.json Helm Release: 1.2.36 4 years ago
test.js Helm Release: 1.2.36 4 years ago

README.md

deferred-leveldown

A mock abstract-leveldown implementation that queues operations while a real abstract-leveldown instance is being opened.

level badge npm Node version Travis Coverage Status JavaScript Style Guide npm Backers on Open Collective Sponsors on Open Collective

deferred-leveldown implements the basic abstract-leveldown API so it can be used as a drop-in replacement where leveldown is needed.

put(), get(), del(), batch() and clear() operations are all queued and kept in memory until the abstract-leveldown-compatible object has been opened through deferred-leveldown's open() method.

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

const deferred  = require('deferred-leveldown')
const leveldown = require('leveldown')

const db = deferred(leveldown('location'))

db.put('foo', 'bar', function (err) {

})

db.open(function (err) {
  // ...
})

If you are upgrading: please see UPGRADING.md.

Contributing

Level/deferred-leveldown 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 for more details.

Donate

To sustain Level and its activities, become a backer or sponsor on Open Collective. Your logo or avatar will be displayed on our 28+ GitHub repositories and npm packages. 💖

Backers

Open Collective backers

Sponsors

Open Collective sponsors

License

MIT © 2013-present Rod Vagg and Contributors.