1.8.1 • Published 5 years ago

@mattmorgis/level v1.8.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Level

Why this fork?

This fork is to provide level-party a version of level that installs on Node.js v10+ without going through major upgrades.

The module level-party depends on level v1, which will fail to install on Node.js v10+ due to it's dependecy on leveldown v1.

When bumping to level v2+, key and value encodings are moved out of levelup and into encoding-down. This causes tests to fail in level-party.

This is a fork of level v1, but updates to use leveldown v2. This continues to keep tests passing on level-party, and enables it work on Node.js v10+

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.