Skip to content
forked from Level/level

Fast & simple storage - a Node.js-style LevelDB wrapper (a convenience package bundling LevelUP & LevelDOWN)

License

Notifications You must be signed in to change notification settings

AlexxNica/level

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Level

LevelDB Logo

Fast & simple storage - a Node.js-style LevelDB wrapper

Build Status dependencies

NPM NPM

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

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.

License & Copyright

Copyright (c) 2012-2017 Level contributors.

Level 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.

About

Fast & simple storage - a Node.js-style LevelDB wrapper (a convenience package bundling LevelUP & LevelDOWN)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%