Package Exports
- level-mem
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (level-mem) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
level-mem
A convenience package bundling LevelUP & MemDOWN
This is a convenience package that bundles the current release of LevelUP and MemDOWN and exposes LevelUP on its export.
Use this package to avoid having to explicitly install MemDOWN when you want to use MemDOWN with LevelUP for non-persistent LevelUP data storage.
var level = require('level-mem')
// 1) Create our database, supply location and options.
// This will create or open the underlying LevelDB store.
var db = level('w00t')
// 2) put a key & value
db.put('name', 'Level', function (err) {
if (err) return console.log('Ooops!', err) // some kind of I/O error
// 3) fetch by key
db.get('name', function (err, value) {
if (err) return console.log('Ooops!', err) // likely the key was not found
// ta da!
console.log('name=' + value)
})
})
See LevelUP and MemDOWN for more details.
Contributing
level-mem 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.
Licence & copyright
Copyright (c) 2012-2013 Rod Vagg contributors (listed above).
level-mem 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.