Level-browserify
Fast & simple storage - a Node.js-style LevelDB wrapper that works in the browser too!
This is a convenience package that bundles the current release of LevelUP and LevelDOWN/Level.js and exposes LevelUP on its export.
Use this package to avoid having to explicitly install LevelDOWN/Level.js when you just want to use LevelUP in node and in the browser.
In node.js you get LevelDOWN, while in the browser you get Level.js (through use of browserify's browser
field setting in package.json
).
var level = require('level-browserify')
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/Level.js for more details.
Contributing
Level-browserify 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-browserify, including LevelUP & LevelDOWN, is only possible due to the excellent work of the following contributors:
Licence & copyright
Copyright (c) 2012-2015 Level-browserify contributors (listed above).
Level-browserify is licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.