Level
Fast & simple storage - a Node.js-style LevelDB wrapper**
This is a convenience package that bundles the current release of LevelUP and LevelDOWN and exposes LevelUP on its export.
Use this package to avoid having to explicitly install LevelDOWN when you just want plain old LevelDB from LevelUP.
var level = require('level')
var db = level('./mydb')
db.put('name', 'Level', function (err) {
if (err) return console.log('Ooops!', err)
db.get('name', function (err, value) {
if (err) return console.log('Ooops!', err)
console.log('name=' + value)
})
})
See LevelUP and LevelDOWN for more details.
Contributing
Level 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
Level, including LevelUP & LevelDOWN, is only possible due to the excellent work of the following contributors:
Licence & copyright
Copyright (c) 2012-2013 Level contributors (listed above).
Level 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.
[0.17.0] - 2013-10-09
This changelog is ordered by semver-version, but the first few releases here did not use semver-valid tags.
:seedling: Initial release.