1.0.0 • Published 10 years ago

uberlevel v1.0.0

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

Uberlevel

This is a convenience package that bundles the current release of LevelUP and lmdb and exposes LevelUP on its export.

Use this package to avoid having to explicitly install lmdb when you just want plain old LevelDB from LevelUP.

var level = require('uberlevel')

// 1) Create our database, supply location and options.
//    This will create or open the underlying LevelDB store.
var db = level('./mydb')

// 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)
	})
})

Contributors

Level, including LevelUP & lmdb, 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.

1.0.0

10 years ago

0.2.0

10 years ago

0.1.0

11 years ago